fix one more case (empty AB and PM lists) after performance fix for custom fields

This commit is contained in:
ralf 2024-05-04 08:10:36 +02:00
parent 37ebc4b8e3
commit ffca28dd1d

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" || !Object.keys(data.customfields).length))
if (global_data[key] && key !== 'fields' && (key !== "customfields" || !data.customfields || !Object.keys(data.customfields).length))
{
data[key] = {...data[key], ...global_data[key]};
}