summaryrefslogtreecommitdiffstats
path: root/webapp/components/notify_counts.jsx
diff options
context:
space:
mode:
authorAsaad Mahmood <asaadmahmood@users.noreply.github.com>2017-05-22 23:17:29 +0500
committerCorey Hulen <corey@hulen.com>2017-05-22 11:17:29 -0700
commit52f73c30cafd6afaa11361b05972e25ebc223a81 (patch)
tree35885388a47ddca9b71c3914245be1d9cfc79c79 /webapp/components/notify_counts.jsx
parent9eb9c115de3a70e26ebacc528a6e50e21e06e9c3 (diff)
downloadchat-52f73c30cafd6afaa11361b05972e25ebc223a81.tar.gz
chat-52f73c30cafd6afaa11361b05972e25ebc223a81.tar.bz2
chat-52f73c30cafd6afaa11361b05972e25ebc223a81.zip
PLT-6651 - Overlay issue modal (#6473)
* PLT-6651 - Overlay issue modal * Fixing mentions badge
Diffstat (limited to 'webapp/components/notify_counts.jsx')
-rw-r--r--webapp/components/notify_counts.jsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/webapp/components/notify_counts.jsx b/webapp/components/notify_counts.jsx
index 6fcb3acdf..f05ecbf12 100644
--- a/webapp/components/notify_counts.jsx
+++ b/webapp/components/notify_counts.jsx
@@ -37,9 +37,9 @@ export default class NotifyCounts extends React.Component {
}
render() {
if (this.state.mentionCount) {
- return <span className='mention-badge badge-notify'>{this.state.mentionCount}</span>;
+ return <span className='badge badge-notify'>{this.state.mentionCount}</span>;
} else if (this.state.messageCount) {
- return <span className='mention-badge badge-notify'>{'•'}</span>;
+ return <span className='badge badge-notify'>{'•'}</span>;
}
return null;
}