Persist existing global variable values on save (#14227)

This commit is contained in:
Azri Kahar
2022-07-01 04:02:10 +08:00
committed by GitHub
parent e14a6ea401
commit e5519b5ce3

View File

@@ -133,7 +133,7 @@ export const useInsightsStore = defineStore('insightsStore', () => {
}
});
variables.value = variableDefaults;
variables.value = assign({}, variableDefaults, variables.value);
}
function dehydrate() {