ソースを参照

Modify to ignore enter-key in IME composing (#446)

Sosuke Suzuki 5 年 前
コミット
5563dd30d7
1 ファイル変更3 行追加0 行削除
  1. 3 0
      src/element/textWysiwyg.tsx

+ 3 - 0
src/element/textWysiwyg.tsx

@@ -55,6 +55,9 @@ export function textWysiwyg({
     }
     if (ev.key === KEYS.ENTER) {
       ev.preventDefault();
+      if (ev.isComposing || ev.keyCode === 229) {
+        return;
+      }
       handleSubmit();
     }
   };