diff options
| author | Henry Jameson <me@hjkos.com> | 2020-11-02 20:51:38 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2020-11-02 20:51:38 +0200 |
| commit | 08e6e6664218d20cf3dd1b00823720505fb08fe7 (patch) | |
| tree | 346cf6dd6030358f39597dca287a84e7e7d06965 /src/components/chat_list_item | |
| parent | f0a66448eeedb348f71b09334b6e7b3c411baeea (diff) | |
fix chat badge and unify styles across all badges including follow
request count.
Diffstat (limited to 'src/components/chat_list_item')
| -rw-r--r-- | src/components/chat_list_item/chat_list_item.vue | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/src/components/chat_list_item/chat_list_item.vue b/src/components/chat_list_item/chat_list_item.vue index 1f8ecdf6..cd3f436e 100644 --- a/src/components/chat_list_item/chat_list_item.vue +++ b/src/components/chat_list_item/chat_list_item.vue @@ -21,6 +21,12 @@ /> </span> <span class="heading-right" /> + <div class="time-wrapper"> + <Timeago + :time="chat.updated_at" + :auto-update="60" + /> + </div> </div> <div class="chat-preview"> <StatusContent @@ -35,12 +41,6 @@ </div> </div> </div> - <div class="time-wrapper"> - <Timeago - :time="chat.updated_at" - :auto-update="60" - /> - </div> </div> </template> |
