logo

pleroma-fe

My custom branche(s) on git.pleroma.social/pleroma/pleroma-fe git clone https://hacktivis.me/git/pleroma-fe.git
commit: 92b04ba7df3e9062665f3c67a6483583dcd7e368
parent fb63e81ed1bd23caca283ec66b74fd82de0a8f3d
Author: HJ <30-hj@users.noreply.git.pleroma.social>
Date:   Wed, 20 Apr 2022 17:27:01 +0000

Merge branch 'fix-chat-errors' into 'develop'

fix some chat errors/warnings that sometimes happen

See merge request pleroma/pleroma-fe!1515

Diffstat:

Msrc/components/chat_title/chat_title.vue3++-
1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/src/components/chat_title/chat_title.vue b/src/components/chat_title/chat_title.vue @@ -14,10 +14,11 @@ /> </router-link> <RichContent + v-if="user" class="username" :title="'@'+user.screen_name_ui" :html="htmlTitle" - :emoji="user.emoji" + :emoji="user.emoji || []" /> </div> </template>