[Client] Fix bug

This commit is contained in:
syuilo 2017-02-26 17:38:50 +09:00
parent b3b0f780f2
commit 4730139dc7
2 changed files with 3 additions and 1 deletions

View file

@ -70,6 +70,8 @@
loading: false, loading: false,
notifications: notifications notifications: notifications
}); });
this.trigger('fetched');
}); });
this.stream.on('notification', this.onNotification); this.stream.on('notification', this.onNotification);

View file

@ -17,7 +17,7 @@
this.Progress.start(); this.Progress.start();
this.refs.ui.refs.notifications.on('loaded', () => { this.refs.ui.refs.notifications.on('fetched', () => {
this.Progress.done(); this.Progress.done();
}); });
}); });