diff --git a/frontend/components/organisms/annotation/Seq2seqBox.vue b/frontend/components/organisms/annotation/Seq2seqBox.vue index 0848aaa1..255dbd72 100644 --- a/frontend/components/organisms/annotation/Seq2seqBox.vue +++ b/frontend/components/organisms/annotation/Seq2seqBox.vue @@ -14,6 +14,8 @@ 0) { this.createAnnotation(this.newText) this.newText = '' } + }, + compositionStart() { + this.isComposing = true + }, + compositionEnd() { + this.isComposing = false + this.hasCompositionJustEnded = true } } }