We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3314099 commit 46b8b98Copy full SHA for 46b8b98
src/lib/Room/RoomFooter/RoomFooter.vue
@@ -333,7 +333,13 @@ export default {
333
const isMobile = detectMobile()
334
335
this.getTextareaRef().addEventListener('keyup', e => {
336
- if (e.key === 'Enter' && !e.shiftKey && !this.fileDialog) {
+ if (
337
+ e.key === 'Enter' &&
338
+ e.isComposing &&
339
+ !e.shiftKey &&
340
+ !this.fileDialog
341
+ ) {
342
+ console.log('keyup', e.isComposing)
343
if (isMobile) {
344
this.message = this.message + '\n'
345
setTimeout(() => this.onChangeInput())
0 commit comments