Check isComposing for send shortcut
This commit is contained in:
parent
1a4dc37f22
commit
c0e12a69a9
1
.gitignore
vendored
1
.gitignore
vendored
@ -12,3 +12,4 @@ public3
|
||||
package-lock.json
|
||||
session_name.session
|
||||
tasks.txt
|
||||
yarn.lock
|
@ -598,7 +598,7 @@ export const handleScrollSideEvent = (elem: HTMLElement, side: 'top' | 'bottom',
|
||||
} */
|
||||
|
||||
export function isSendShortcutPressed(e: KeyboardEvent) {
|
||||
if(e.key === 'Enter' && !isMobile) {
|
||||
if(e.key === 'Enter' && !isMobile && !e.isComposing) {
|
||||
/* if(e.ctrlKey || e.metaKey) {
|
||||
this.messageInput.innerHTML += '<br>';
|
||||
placeCaretAtEnd(this.message)
|
||||
|
Loading…
x
Reference in New Issue
Block a user