aboutsummaryrefslogtreecommitdiff
path: root/src/components/chat_title/chat_title.vue
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2022-04-20 20:23:34 +0300
committerHenry Jameson <me@hjkos.com>2022-04-20 20:23:34 +0300
commite388dbc168ae466e6745588df0498ee0036d6eb1 (patch)
treed33e8bea242b8f8a345e28b304236081806440f2 /src/components/chat_title/chat_title.vue
parentbe8098e8ec41ffa909987ee5db990a8c349a9034 (diff)
parent895eda3714e9977d931a5e4a0f215c304df021af (diff)
Merge branch 'fix-chat-errors' into threecolumn
* fix-chat-errors: fix some chat errors/warnings that sometimes happen Fix incorrect close of a status popover when clicking Expand inside it fix tests fix hashtags by explicitly putting attributes
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 e62c52b2..7f6aaaa4 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 && user.screen_name_ui)"
:html="htmlTitle"
- :emoji="user.emoji"
+ :emoji="user.emoji || []"
/>
</div>
</template>