This commit is contained in:
2021-06-01 22:35:17 +00:00
parent 8d4c77ae7a
commit 7253f9a39e

View File

@@ -362,6 +362,13 @@ export default {
dirty: false,
valid: true
});
//refresh the local global settings cache so user can try their settings right away
//get the client version of the global settings object values
let gsets = await window.$gz.api.get("global-biz-setting/client");
if (!gsets.error) {
window.$gz.store.commit("setGlobalSettings", gsets.data);
}
}
} catch (ex) {
window.$gz.errorHandler.handleFormError(ex, vm);