fix notification bell unread count overflow

This commit is contained in:
Abhinav Raut
2026-01-09 00:47:22 +05:30
parent e59c31f64e
commit 30363718ca
@@ -7,7 +7,7 @@
v-if="notificationStore.unreadCount > 0"
class="absolute top-0.5 right-0.5 inline-flex size-3.5 items-center justify-center rounded-full bg-destructive text-[9px] font-medium text-destructive-foreground"
>
{{ notificationStore.unreadCount > 99 ? '99+' : notificationStore.unreadCount }}
{{ notificationStore.unreadCount > 99 ? '99' : notificationStore.unreadCount }}
</span>
</SidebarMenuButton>
</PopoverTrigger>