Explorar o código

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

Sosuke Suzuki %!s(int64=5) %!d(string=hai) anos
pai
achega
5563dd30d7
Modificáronse 1 ficheiros con 3 adicións e 0 borrados
  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();
     }
   };