From 30363718caefbc378c792d9b8cc589ec9228df04 Mon Sep 17 00:00:00 2001 From: Abhinav Raut Date: Fri, 9 Jan 2026 00:47:22 +0530 Subject: [PATCH] fix notification bell unread count overflow --- frontend/src/components/sidebar/NotificationBell.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/components/sidebar/NotificationBell.vue b/frontend/src/components/sidebar/NotificationBell.vue index 68dc3660..518c420a 100644 --- a/frontend/src/components/sidebar/NotificationBell.vue +++ b/frontend/src/components/sidebar/NotificationBell.vue @@ -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 }}