fix: config

This commit is contained in:
Fine 2023-12-20 15:09:17 +08:00
parent f91664bc77
commit 64528b216d

View File

@ -56,13 +56,14 @@ limitations under the License. -->
ElMessage.error("Only support the is_present function"); ElMessage.error("Only support the is_present function");
return; return;
} }
const children = dashboardStore.selectedGrid.children || []; const children = JSON.parse(JSON.stringify(dashboardStore.selectedGrid.children || []));
for (const item of children) { for (const item of children) {
if (item.name === name) { if (item.name === name) {
item.expression = expressions[name]; item.expression = expressions[name];
} }
} }
dashboardStore.selectWidget({ ...dashboardStore.selectedGrid, children }); dashboardStore.selectWidget({ ...dashboardStore.selectedGrid, children });
} }
function applyConfig() { function applyConfig() {