mirror of
https://github.com/directus/directus.git
synced 2026-01-24 17:17:58 -05:00
fix Flow operations update bug (#14998)
This commit is contained in:
@@ -280,7 +280,7 @@ const panels = computed(() => {
|
||||
const updates = stagedPanels.value.find((updatedPanel) => updatedPanel.id === panel.id);
|
||||
|
||||
if (updates) {
|
||||
return merge({}, panel, updates);
|
||||
return Object.assign({}, panel, updates);
|
||||
}
|
||||
|
||||
return panel;
|
||||
|
||||
Reference in New Issue
Block a user