We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0058957 commit 9579904Copy full SHA for 9579904
frontend/src/components/CodeViewer/index.vue
@@ -167,7 +167,7 @@ const initEditor = () => {
167
? [{ javascript, json, yaml }[props.lang]()]
168
: []),
169
EditorView.updateListener.of((update) => {
170
- if (update.docChanged) {
+ if (update.docChanged && !update.view.composing) {
171
onChange(update.state.doc.toString())
172
}
173
}),
0 commit comments