Open
Description
As described in #7043 (comment)
record duplication currently emits:
let newrecord = { ...obj };
newrecord.field = value;
It should be:
{ ...obj, field: value };
Metadata
Metadata
Assignees
Type
Projects
Status
No status
As described in #7043 (comment)
record duplication currently emits:
let newrecord = { ...obj };
newrecord.field = value;
It should be:
{ ...obj, field: value };
Status