aboutsummaryrefslogtreecommitdiff
path: root/src/components/chat_title/chat_title.vue
diff options
context:
space:
mode:
authorHJ <30-hj@users.noreply.git.pleroma.social>2022-04-20 17:27:01 +0000
committerHJ <30-hj@users.noreply.git.pleroma.social>2022-04-20 17:27:01 +0000
commit92b04ba7df3e9062665f3c67a6483583dcd7e368 (patch)
tree02620d3ab9c533ef0049627d2164a1463a328eca /src/components/chat_title/chat_title.vue
parentfb63e81ed1bd23caca283ec66b74fd82de0a8f3d (diff)
parent895eda3714e9977d931a5e4a0f215c304df021af (diff)
Merge branch 'fix-chat-errors' into 'develop'
fix some chat errors/warnings that sometimes happen See merge request pleroma/pleroma-fe!1515
Diffstat (limited to 'src/components/chat_title/chat_title.vue')
-rw-r--r--src/components/chat_title/chat_title.vue3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/components/chat_title/chat_title.vue b/src/components/chat_title/chat_title.vue
index a92028e8..f4706caf 100644
--- 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>