mirror of
https://github.com/n8n-io/n8n.git
synced 2026-05-28 23:37:00 +02:00
fix(editor): Prevent submit when composing with IME on chat textarea (#17179)
This commit is contained in:
parent
e63ae55a0c
commit
5db8bbd126
|
|
@ -144,7 +144,7 @@ async function onSubmit(event: MouseEvent | KeyboardEvent) {
|
|||
}
|
||||
|
||||
async function onSubmitKeydown(event: KeyboardEvent) {
|
||||
if (event.shiftKey) {
|
||||
if (event.shiftKey || event.isComposing) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user