Merge pull request #4732 from nbianca/typo

Fixed typo.
This commit is contained in:
Guo Xiang Tan 2017-03-02 06:02:43 +08:00 committed by GitHub
commit f5bf6256a9
1 changed files with 1 additions and 1 deletions

View File

@ -55,7 +55,7 @@ export default {
const staleIndex = _.findIndex(oldNotifications, {id: lastNotification.id});
if (staleIndex === -1) {
// this gets a bit tricky, uread pms are bumped to front
// this gets a bit tricky, unread pms are bumped to front
let insertPosition = 0;
if (lastNotification.notification_type !== 6) {
insertPosition = _.findIndex(oldNotifications, n => n.notification_type !== 6 || n.read);