Fix frontend with empty display_fields

This commit is contained in:
shamoon 2025-02-19 15:11:54 -08:00
parent 822c2d2d56
commit becc5aba94
No known key found for this signature in database

View File

@ -145,7 +145,10 @@ export class SavedViewWidgetComponent
})
}
if (this.savedView.display_fields) {
if (
this.savedView.display_fields &&
this.savedView.display_fields.length > 0
) {
this.displayFields = this.savedView.display_fields
}