diff options
| author | Henry Jameson <me@hjkos.com> | 2022-04-20 20:23:34 +0300 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-04-20 20:23:34 +0300 |
| commit | e388dbc168ae466e6745588df0498ee0036d6eb1 (patch) | |
| tree | d33e8bea242b8f8a345e28b304236081806440f2 /src/components/chat_title | |
| parent | be8098e8ec41ffa909987ee5db990a8c349a9034 (diff) | |
| parent | 895eda3714e9977d931a5e4a0f215c304df021af (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')
| -rw-r--r-- | src/components/chat_title/chat_title.vue | 3 |
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> |
