feat: Update conversation messages screen UI (#12975)

This commit is contained in:
Sivin Varghese
2025-12-03 15:48:04 +05:30
committed by GitHub
parent 99f17891d0
commit 8ad1bf3d2b
19 changed files with 1089 additions and 1054 deletions
@@ -123,10 +123,13 @@ const statusToShow = computed(() => {
<template>
<div class="text-xs flex items-center gap-1.5">
<div v-if="isPrivate" class="flex items-center gap-2 px-1">
<Icon icon="i-lucide-lock-keyhole" class="size-3" />
<div class="w-px h-2 rounded-lg bg-n-amber-text" />
</div>
<div class="inline">
<time class="inline">{{ readableTime }}</time>
</div>
<Icon v-if="isPrivate" icon="i-lucide-lock-keyhole" class="size-3" />
<MessageStatus v-if="showStatusIndicator" :status="statusToShow" />
</div>
</template>