mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-16 17:46:45 +00:00
fix(editor): Prevent submit when composing with IME on chat textarea (#17179)
This commit is contained in:
@@ -144,7 +144,7 @@ async function onSubmit(event: MouseEvent | KeyboardEvent) {
|
||||
}
|
||||
|
||||
async function onSubmitKeydown(event: KeyboardEvent) {
|
||||
if (event.shiftKey) {
|
||||
if (event.shiftKey || event.isComposing) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user