aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2024-02-29 20:15:41 +0200
committerHenry Jameson <me@hjkos.com>2024-02-29 20:15:41 +0200
commita2f2a0e4090e9fdc9d227fe8fa13fad9ac529887 (patch)
tree0006755ea5f77d21df8059ddb174a7f133f19a70
parent01f6f89c7de7dee3c91d2850490981d73a3c0465 (diff)
fix autocomplete
-rw-r--r--src/components/emoji_input/emoji_input.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/emoji_input/emoji_input.vue b/src/components/emoji_input/emoji_input.vue
index e016aff1..71969227 100644
--- a/src/components/emoji_input/emoji_input.vue
+++ b/src/components/emoji_input/emoji_input.vue
@@ -70,7 +70,7 @@
:key="index"
class="menu-item autocomplete-item"
role="option"
- :class="{ active: index === highlighted }"
+ :class="{ '-active': index === highlighted }"
:aria-label="autoCompleteItemLabel(suggestion)"
:aria-selected="index === highlighted"
@click.stop.prevent="onClick($event, suggestion)"