summaryrefslogtreecommitdiff
path: root/src/client/components/reaction-picker.vue
diff options
context:
space:
mode:
Diffstat (limited to 'src/client/components/reaction-picker.vue')
-rw-r--r--src/client/components/reaction-picker.vue2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/components/reaction-picker.vue b/src/client/components/reaction-picker.vue
index ccf6eaa51e..9380e6a78d 100644
--- a/src/client/components/reaction-picker.vue
+++ b/src/client/components/reaction-picker.vue
@@ -13,7 +13,7 @@
mode="out-in"
appear
>
- <button class="_button" v-for="(reaction, i) in rs" :key="reaction" @click="react(reaction)" :tabindex="i + 1" :title="/^[a-z]+$/.test(reaction) ? $t('@.reactions.' + reaction) : reaction"><x-reaction-icon :reaction="reaction"/></button>
+ <button class="_button" v-for="(reaction, i) in rs" :key="reaction" @click="react(reaction)" :tabindex="i + 1" :title="reaction"><x-reaction-icon :reaction="reaction"/></button>
</transition-group>
<input class="text" v-model="text" :placeholder="$t('enterEmoji')" @keyup.enter="reactText" @input="tryReactText" v-autocomplete="{ model: 'text' }">
</div>