Skip to content

Commit 8619aa8

Browse files
committed
fix(conversation): reorder timestamps, the last reply timestamp in conversation info sidebar
1 parent 25db578 commit 8619aa8

File tree

1 file changed

+9
-9
lines changed

1 file changed

+9
-9
lines changed

frontend/src/features/conversation/sidebar/ConversationInfo.vue

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -43,15 +43,6 @@
4343
</div>
4444
</div>
4545

46-
<div class="flex flex-col">
47-
<p class="font-medium">{{ $t('form.field.lastReplyAt') }}</p>
48-
<Skeleton v-if="conversationStore.conversation.loading" class="w-32 h-4" />
49-
<p v-if="conversation.last_reply_at">
50-
{{ format(conversation.last_reply_at, 'PPpp') }}
51-
</p>
52-
<p v-else>-</p>
53-
</div>
54-
5546
<div class="flex flex-col">
5647
<div class="flex justify-start items-center space-x-2">
5748
<p class="font-medium">{{ $t('form.field.resolvedAt') }}</p>
@@ -71,6 +62,15 @@
7162
</div>
7263
</div>
7364

65+
<div class="flex flex-col">
66+
<p class="font-medium">{{ $t('form.field.lastReplyAt') }}</p>
67+
<Skeleton v-if="conversationStore.conversation.loading" class="w-32 h-4" />
68+
<p v-if="conversation.last_reply_at">
69+
{{ format(conversation.last_reply_at, 'PPpp') }}
70+
</p>
71+
<p v-else>-</p>
72+
</div>
73+
7474
<div class="flex flex-col" v-if="conversation.closed_at">
7575
<p class="font-medium">{{ $t('form.field.closedAt') }}</p>
7676
<Skeleton v-if="conversationStore.conversation.loading" class="w-32 h-4" />

0 commit comments

Comments
 (0)