We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 8f92af2 commit 7311bf3Copy full SHA for 7311bf3
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