mirror of
https://github.com/abhinavxd/libredesk.git
synced 2026-09-22 10:33:24 +00:00
fix notification bell unread count overflow
This commit is contained in:
@@ -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>
|
||||
|
||||
Reference in New Issue
Block a user