aboutsummaryrefslogtreecommitdiff
path: root/src/components/chat_list_item
diff options
context:
space:
mode:
authorShpuld Shpludson <shp@cock.li>2020-11-03 17:09:10 +0000
committerShpuld Shpludson <shp@cock.li>2020-11-03 17:09:10 +0000
commitb485d21ba91629931f2846eafaed7ec04d73c8c8 (patch)
tree5252e878a9536b9ee94a3d44062f758f2bbc11d7 /src/components/chat_list_item
parent22bc0c08402c2aea96ac33680dcc2cef3109ded9 (diff)
parent4e4b258c547fd4dba2be02aa66a1fd3aa2bb58ef (diff)
Merge branch 'fix-chat-badge' into 'develop'
Few more minor fixes See merge request pleroma/pleroma-fe!1275
Diffstat (limited to 'src/components/chat_list_item')
-rw-r--r--src/components/chat_list_item/chat_list_item.vue12
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>