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 43f05bb commit f0420fbCopy full SHA for f0420fb
src/lib/Room/Room.vue
@@ -1089,9 +1089,9 @@ export default {
1089
setTimeout(() => element.classList.remove('vac-scroll-smooth'))
1090
}, 50)
1091
},
1092
- onChangeInput: debounce(function (e) {
1093
- if (e?.target?.value || e?.target?.value === '') {
1094
- this.message = e.target.value
+ onChangeInput: debounce(function () {
+ if (this.getTextareaRef()?.value || this.getTextareaRef()?.value === '') {
+ this.message = this.getTextareaRef()?.value
1095
}
1096
this.keepKeyboardOpen = true
1097
this.resizeTextarea()
0 commit comments