commit: a2f2a0e4090e9fdc9d227fe8fa13fad9ac529887
parent 01f6f89c7de7dee3c91d2850490981d73a3c0465
Author: Henry Jameson <me@hjkos.com>
Date: Thu, 29 Feb 2024 20:15:41 +0200
fix autocomplete
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git 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)"