From 7414f87d6c7509a5d8fb6d2e3732bed740bc6caf Mon Sep 17 00:00:00 2001 From: Nick Zuber Date: Mon, 12 Nov 2018 11:15:04 -0500 Subject: [PATCH] Clear tab icon when read notification through click --- src/pages/Notifications/index.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/pages/Notifications/index.js b/src/pages/Notifications/index.js index 407094f..f370eea 100644 --- a/src/pages/Notifications/index.js +++ b/src/pages/Notifications/index.js @@ -274,6 +274,7 @@ class NotificationsPage extends React.Component { }); notification.addEventListener('click', () => { + this.updateTabIcon(false); this.enhancedOnStageThread(n.id, n.repository); window.open(n.url); })