diff --git a/frontend/src/Editor/Editor.jsx b/frontend/src/Editor/Editor.jsx index 0dcc985b5a..94e3242203 100644 --- a/frontend/src/Editor/Editor.jsx +++ b/frontend/src/Editor/Editor.jsx @@ -559,9 +559,14 @@ class Editor extends React.Component { const appDefinition = { ...this.state.appDefinition }; appDefinition.globalSettings[key] = value; - this.setState({ - appDefinition, - }); + this.setState( + { + appDefinition, + }, + () => { + this.autoSave(); + } + ); }; saveApp = (id, attributes, notify = false) => {