aboutsummaryrefslogtreecommitdiff
path: root/src/components/emoji_input
diff options
context:
space:
mode:
authortusooa <tusooa@kazv.moe>2023-02-20 23:49:34 -0500
committertusooa <tusooa@kazv.moe>2023-02-20 23:49:34 -0500
commit5468309f6aefbc61467338d2a96f29d6c416cc54 (patch)
treeec247f37a44f507ca36f53b32bc99b847d74fcf1 /src/components/emoji_input
parenteec27700f0199e6f9cf478a4945d6939d28e5931 (diff)
Make it possible to auto-select the first candidate in autocomplete
Diffstat (limited to 'src/components/emoji_input')
-rw-r--r--src/components/emoji_input/emoji_input.js5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/components/emoji_input/emoji_input.js b/src/components/emoji_input/emoji_input.js
index 8a8d098d..68654f69 100644
--- a/src/components/emoji_input/emoji_input.js
+++ b/src/components/emoji_input/emoji_input.js
@@ -134,6 +134,9 @@ const EmojiInput = {
padEmoji () {
return this.$store.getters.mergedConfig.padEmoji
},
+ defaultCandidateIndex () {
+ return this.$store.getters.mergedConfig.autocompleteSelect ? 0 : -1
+ },
preText () {
return this.modelValue.slice(0, this.caret)
},
@@ -287,7 +290,7 @@ const EmojiInput = {
...rest,
img: imageUrl || ''
}))
- this.highlighted = -1
+ this.highlighted = this.defaultCandidateIndex
this.$refs.screenReaderNotice.announce(
this.$tc('tool_tip.autocomplete_available',
this.suggestions.length,