summaryrefslogtreecommitdiffstats
path: root/webapp/components/notify_counts.jsx
diff options
context:
space:
mode:
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 f05ecbf12..6fcb3acdf 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='badge badge-notify'>{this.state.mentionCount}</span>;
+ return <span className='mention-badge badge-notify'>{this.state.mentionCount}</span>;
} else if (this.state.messageCount) {
- return <span className='badge badge-notify'>{'•'}</span>;
+ return <span className='mention-badge badge-notify'>{'•'}</span>;
}
return null;
}