Make keys work as intended when there is no suggestions

merge-requests/1785/head
tusooa 2 years ago
parent 246593970b
commit 5478192e20
No known key found for this signature in database
GPG Key ID: 7B467EDE43A08224

@ -395,7 +395,9 @@ const EmojiInput = {
} else if (this.highlighted < -1) {
this.highlighted = len - 1
}
e.preventDefault()
if (len > 0) {
e.preventDefault()
}
},
cycleForward (e) {
const len = this.suggestions.length || 0
@ -405,7 +407,9 @@ const EmojiInput = {
this.highlighted = -1
this.input.focus()
}
e.preventDefault()
if (len > 0) {
e.preventDefault()
}
},
scrollIntoView () {
const rootRef = this.$refs.picker.$el

Loading…
Cancel
Save