logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: fca1e0abaefaaf4158cf94afdcd8442852c554c5
parent f5891e950ef62523dff0c66f6a34c4742fe4fb23
Author: HJ <30-hj@users.noreply.git.pleroma.social>
Date:   Fri, 12 May 2023 14:07:33 +0000

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

Diffstat:

Msrc/components/react_button/react_button.js2+-
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 } } }