Emoji: support multiple emoji input

This commit is contained in:
10G Meow 2023-01-07 11:04:07 +02:00
parent 34f095e67f
commit db6d69df1b

View file

@ -1273,7 +1273,7 @@ export default {
} }
} else { } else {
// When text input emoji picker is clicked // When text input emoji picker is clicked
this.currentInput = e.data; this.currentInput = `${this.currentInput} ${e.data}`;
this.$refs.messageInput.focus(); this.$refs.messageInput.focus();
} }