summaryrefslogtreecommitdiffstats
path: root/web/react/components
diff options
context:
space:
mode:
authorJoramWilander <jwawilander@gmail.com>2016-02-12 14:23:12 -0500
committerJoramWilander <jwawilander@gmail.com>2016-02-12 14:23:12 -0500
commitc861a24d48d2cb5417f704eca7d28db7637275f6 (patch)
treef958ccda0970acd32b569c7734452b369dfee8d9 /web/react/components
parent6cb4f82ee5a17cd1d32ae19c266b78c2cfd604e6 (diff)
downloadchat-c861a24d48d2cb5417f704eca7d28db7637275f6.tar.gz
chat-c861a24d48d2cb5417f704eca7d28db7637275f6.tar.bz2
chat-c861a24d48d2cb5417f704eca7d28db7637275f6.zip
Fix badge and tab */(1) not disappearing until switching away from channel
Diffstat (limited to 'web/react/components')
-rw-r--r--web/react/components/channel_loader.jsx4
1 files changed, 3 insertions, 1 deletions
diff --git a/web/react/components/channel_loader.jsx b/web/react/components/channel_loader.jsx
index 174c8c4e1..f3000ee05 100644
--- a/web/react/components/channel_loader.jsx
+++ b/web/react/components/channel_loader.jsx
@@ -95,6 +95,8 @@ class ChannelLoader extends React.Component {
$(window).on('focus', function windowFocus() {
AsyncClient.updateLastViewedAt();
+ ChannelStore.resetCounts(ChannelStore.getCurrentId());
+ ChannelStore.emitChange();
window.isActive = true;
});
@@ -185,4 +187,4 @@ ChannelLoader.propTypes = {
intl: intlShape.isRequired
};
-export default injectIntl(ChannelLoader); \ No newline at end of file
+export default injectIntl(ChannelLoader);