From 587aa74ac3d8f2e1fdd8754d60c7a8c38ce30b88 Mon Sep 17 00:00:00 2001 From: Chocobozzz Date: Mon, 13 Feb 2023 14:25:16 +0100 Subject: Use + when having more than 99 notifications --- client/src/app/menu/notification.component.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'client/src/app/menu/notification.component.ts') diff --git a/client/src/app/menu/notification.component.ts b/client/src/app/menu/notification.component.ts index ac9c79991..dc88d5a3c 100644 --- a/client/src/app/menu/notification.component.ts +++ b/client/src/app/menu/notification.component.ts @@ -38,7 +38,7 @@ export class NotificationComponent implements OnInit, OnDestroy { this.userNotificationService.countUnreadNotifications() .subscribe({ next: result => { - this.unreadNotifications = Math.min(result, 99) // Limit number to 99 + this.unreadNotifications = 102 this.subscribeToNotifications() }, -- cgit v1.2.3