Api: Fix customfield with no data sent breaks entire customfield tab

This commit is contained in:
nathan 2023-09-08 08:41:16 -06:00
parent 825c1e8614
commit d80078893e

View File

@ -360,7 +360,7 @@ export class et2_customfields_list extends et2_valueWidget implements et2_IDetac
// Add in settings that are objects
// Customized settings for this widget (unlikely)
const data = this.getArrayMgr("modifications").getEntry(this.id);
const data = this.getArrayMgr("modifications").getEntry(this.id) ?? {};
// Check for global settings
const global_data = this.getArrayMgr("modifications").getRoot().getEntry('~custom_fields~', true);
if(global_data)