We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c4fb567 commit 5cd344eCopy full SHA for 5cd344e
src/js/components/notifications.js
@@ -91,6 +91,7 @@ var Notifications = React.createClass({
91
})
92
);
93
} else {
94
+ notificationsEmpty = true;
95
errors = (
96
<div>
97
<h3>No Search Results.</h3>
@@ -106,7 +107,7 @@ var Notifications = React.createClass({
106
107
<div className={
108
wrapperClass +
109
(this.state.errors ? ' errorred' : '') +
- (notificationsEmpty || !notifications.length ? ' all-read' : '')
110
+ (notificationsEmpty ? ' all-read' : '')
111
}>
112
<Loading className='loading-container' shouldShow={this.state.loading}>
113
<div className='loading-text'>working on it</div>
0 commit comments