Fixed bug: Hidden custom fields (for custom forms) losing values when updating preferences.
Credits to @flapuente-palbin
This commit is contained in:
parent
1d76eefe27
commit
4f5c132db4
1 changed files with 1 additions and 1 deletions
|
@ -414,7 +414,7 @@ module.exports.update = (listId, cid, updates, allowEmail, callback) => {
|
||||||
}
|
}
|
||||||
});
|
});
|
||||||
|
|
||||||
fields.getValues(fields.getRow(fieldList, updates, true, true), true).forEach(field => {
|
fields.getValues(fields.getRow(fieldList, updates, true, true, true), true).forEach(field => {
|
||||||
keys.push(field.key);
|
keys.push(field.key);
|
||||||
values.push(field.value);
|
values.push(field.value);
|
||||||
});
|
});
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue