mirror of
https://github.com/directus/directus.git
synced 2026-04-25 03:00:53 -04:00
fix flow operations staged edits (#15662)
This commit is contained in:
@@ -404,7 +404,7 @@ function stageOperationEdits(event: { edits: Partial<OperationRaw>; id?: string
|
||||
if (stagedPanels.value.some((panel) => panel.id === key)) {
|
||||
stagedPanels.value = stagedPanels.value.map((panel) => {
|
||||
if (panel.id === key) {
|
||||
return merge({ id: key, flow: props.primaryKey }, panel, event.edits);
|
||||
return Object.assign({ id: key, flow: props.primaryKey }, panel, event.edits);
|
||||
}
|
||||
|
||||
return panel;
|
||||
|
||||
Reference in New Issue
Block a user