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 22fcd05 commit 12976ccCopy full SHA for 12976cc
src/lib/Room/Room.vue
@@ -893,7 +893,9 @@ export default {
893
}, 50)
894
},
895
onChangeInput: debounce(function(e) {
896
- this.message = e.target.value
+ if (e?.target?.value) {
897
+ this.message = e.target.value
898
+ }
899
this.keepKeyboardOpen = true
900
this.resizeTextarea()
901
this.$emit('typing-message', this.message)
0 commit comments