fix Flow operations update bug (#14998)

This commit is contained in:
Azri Kahar
2022-08-10 21:33:23 +08:00
committed by GitHub
parent 0fd492cdd2
commit 94393be968

View File

@@ -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;