aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2023-05-12 14:07:33 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2023-05-12 14:07:33 +0000
commitfca1e0abaefaaf4158cf94afdcd8442852c554c5 (patch)
tree9172df205f6b4b0244a2435aa99896e68c7ba3c2
parentf5891e950ef62523dff0c66f6a34c4742fe4fb23 (diff)
parent4b38fc5ffcad8fe9cce81a64d418c41480d6a97f (diff)
Merge branch 'tusooa/custom-emoji-selective' into 'develop'
Fix custom emojis shown in selector if backend does not support it See merge request pleroma/pleroma-fe!1823
-rw-r--r--src/components/react_button/react_button.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/react_button/react_button.js b/src/components/react_button/react_button.js
index 8eed4b60..0d252155 100644
--- a/src/components/react_button/react_button.js
+++ b/src/components/react_button/react_button.js
@@ -46,7 +46,7 @@ const ReactButton = {
},
computed: {
hideCustomEmoji () {
- return !this.$store.state.instance.pleromaChatMessagesAvailable
+ return !this.$store.state.instance.pleromaCustomEmojiReactionsAvailable
}
}
}