Skip to content

Commit

Permalink
Fix issue with changing theme and other editor settings not propagati…
Browse files Browse the repository at this point in the history
…ng down to the editor instances
  • Loading branch information
heyman committed Sep 10, 2024
1 parent 487168d commit 8807223
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/stores/editor-cache.js
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ export const useEditorCacheStore = defineStore("editorCache", {
},

eachEditor(fn) {
Object.values(this.editorCache.cache).forEach(fn)
Object.values(toRaw(this.editorCache.cache)).forEach(fn)
},
},
})

0 comments on commit 8807223

Please sign in to comment.