commit: 4b38fc5ffcad8fe9cce81a64d418c41480d6a97f
parent 0f730a8524bc5b9af376cad4e32969beef266f5d
Author: tusooa <tusooa@kazv.moe>
Date: Fri, 12 May 2023 09:57:22 -0400
Fix custom emojis shown in selector if backend does not support it
Diffstat:
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
@@ -46,7 +46,7 @@ const ReactButton = {
},
computed: {
hideCustomEmoji () {
- return !this.$store.state.instance.pleromaChatMessagesAvailable
+ return !this.$store.state.instance.pleromaCustomEmojiReactionsAvailable
}
}
}