diff --git a/app/elements/kano-app-editor/kano-app-editor.js b/app/elements/kano-app-editor/kano-app-editor.js index a3badd590..cdf7c5cbd 100644 --- a/app/elements/kano-app-editor/kano-app-editor.js +++ b/app/elements/kano-app-editor/kano-app-editor.js @@ -277,6 +277,7 @@ Polymer({ if (!this.remixMode) { localStorage.removeItem(`savedApp-${this.mode.id}`); } + this.unsavedChanges = false; }, checkBlockDependency (part) { let xmlString, xml, parser, blocks, block, blockId, pieces; @@ -438,6 +439,7 @@ Polymer({ this.$['root-view'].computeBlocks(); this.set('code', savedApp.code); this.set('background', savedApp.background); + this.unsavedChanges = false; }, _formatCode (code) { code = code || {};