Fix issue with changing theme and other editor settings not propagating down to the editor instances

This commit is contained in:
Jonatan Heyman 2024-09-10 09:55:14 +02:00
parent 487168d153
commit 88072237af

View File

@ -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)
},
},
})