diff options
| author | tusooa <tusooa@kazv.moe> | 2023-02-20 23:49:34 -0500 |
|---|---|---|
| committer | tusooa <tusooa@kazv.moe> | 2023-02-20 23:49:34 -0500 |
| commit | 5468309f6aefbc61467338d2a96f29d6c416cc54 (patch) | |
| tree | ec247f37a44f507ca36f53b32bc99b847d74fcf1 /src/components/emoji_input | |
| parent | eec27700f0199e6f9cf478a4945d6939d28e5931 (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.js | 5 |
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, |
