From eac7e100cc29ef3ef4c4099a9e94e4ca0dcfdfc1 Mon Sep 17 00:00:00 2001 From: zeppi Date: Sat, 9 Jan 2021 14:53:12 -0500 Subject: [PATCH] notifications 20+ --- ui/component/notificationBubble/view.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ui/component/notificationBubble/view.jsx b/ui/component/notificationBubble/view.jsx index 1054fbbc7..c228b0397 100644 --- a/ui/component/notificationBubble/view.jsx +++ b/ui/component/notificationBubble/view.jsx @@ -22,7 +22,7 @@ export default function NotificationHeaderButton(props: Props) { 'notification__bubble--inline': inline, })} > - {unreadCount} + {unreadCount > 20 ? '20+' : unreadCount} ); }