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 8cc0035 commit d26b228Copy full SHA for d26b228
src/lib/Room/Room.vue
@@ -1053,7 +1053,9 @@ export default {
1053
}, 50)
1054
},
1055
onChangeInput: debounce(function(e) {
1056
- this.message = e?.target?.value
+ if (e?.target?.value) {
1057
+ this.message = e.target.value
1058
+ }
1059
this.keepKeyboardOpen = true
1060
this.resizeTextarea()
1061
this.$emit('typing-message', this.message)
0 commit comments