Merge branch '397-multiple-emoji-input' into 'dev'

Emoji: support multiple emoji input

See merge request keanuapp/keanuapp-weblite!126
This commit is contained in:
N Pex 2023-01-09 14:18:36 +00:00
commit e0b2dcbbda

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();
} }