From 4b38fc5ffcad8fe9cce81a64d418c41480d6a97f Mon Sep 17 00:00:00 2001 From: tusooa Date: Fri, 12 May 2023 09:57:22 -0400 Subject: [PATCH] Fix custom emojis shown in selector if backend does not support it --- src/components/react_button/react_button.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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 } } }