mirror of
https://github.com/EGroupware/egroupware.git
synced 2024-11-23 16:33:17 +01:00
fix empty customfields tab after performance fix
This commit is contained in:
parent
b067a22380
commit
02b23434bb
@ -369,7 +369,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]};
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user