Skip to content

Commit 860574a

Browse files
committed
(fix) last character not removed from input
1 parent c6c5c25 commit 860574a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/lib/Room/Room.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1053,7 +1053,7 @@ export default {
10531053
}, 50)
10541054
},
10551055
onChangeInput: debounce(function(e) {
1056-
if (e?.target?.value) {
1056+
if (e?.target?.value || e?.target?.value === '') {
10571057
this.message = e.target.value
10581058
}
10591059
this.keepKeyboardOpen = true

0 commit comments

Comments
 (0)