fix empty customfields tab after performance fix

This commit is contained in:
ralf 2024-05-03 11:50:41 +02:00
parent 9589b84149
commit 335b66612c

View File

@ -454,7 +454,7 @@ export class et2_customfields_list extends et2_valueWidget implements et2_IDetac
for(let key in data)
{
// 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]};
}