diff --git a/frontend/src/components/CustomDialog.vue b/frontend/src/components/CustomDialog.vue index c3a28c9..a34349a 100644 --- a/frontend/src/components/CustomDialog.vue +++ b/frontend/src/components/CustomDialog.vue @@ -8,6 +8,8 @@ type="text" style="width:100%;padding:10px 14px;border:1.5px solid #d4cfc7;border-radius:10px;font-size:14px;margin-bottom:16px;outline:none;font-family:inherit;box-sizing:border-box" @keydown.enter="submitPrompt" + @compositionstart="isComposing = true" + @compositionend="onCompositionEnd" ref="promptInput" />
@@ -19,11 +21,12 @@