fix empty customfields tab after performance fix

This commit is contained in:
ralf 2024-05-03 11:50:41 +02:00
parent b067a22380
commit 02b23434bb

View File

@ -369,7 +369,7 @@ export class et2_customfields_list extends et2_valueWidget implements et2_IDetac
for(let key in data) for(let key in data)
{ {
// Don't overwrite fields / customfields with global values // Don't overwrite fields / customfields with global values
if(global_data[key] && key !== 'fields' && !(key == "customfields" && typeof data.customfields != undefined)) if (global_data[key] && key !== 'fields' && (key !== "customfields" || !Object.keys(data.customfields).length))
{ {
data[key] = {...data[key], ...global_data[key]}; data[key] = {...data[key], ...global_data[key]};
} }