aboutsummaryrefslogtreecommitdiff
path: root/src/services
diff options
context:
space:
mode:
authorHenry Jameson <me@hjkos.com>2019-01-11 03:38:23 +0300
committerHenry Jameson <me@hjkos.com>2019-01-11 03:38:23 +0300
commitb18e27c6d4d2b3d681be8dd81dafcdfeaf20fb35 (patch)
tree7ed2f8c40a641941c048f4e4bc7ddf592c8fe4ef /src/services
parent48e811e6edc774affa3526e7a25df6bb07597c9d (diff)
fix tests, removed one unused function, fix real problem that tests helped to
surface
Diffstat (limited to 'src/services')
-rw-r--r--src/services/notification_utils/notification_utils.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/services/notification_utils/notification_utils.js b/src/services/notification_utils/notification_utils.js
index c6782af4..c3879677 100644
--- a/src/services/notification_utils/notification_utils.js
+++ b/src/services/notification_utils/notification_utils.js
@@ -11,7 +11,7 @@ export const visibleTypes = store => ([
export const visibleNotificationsFromStore = store => {
// map is just to clone the array since sort mutates it and it causes some issues
- let sortedNotifications = notificationsFromStore(store).map(_ => _).sort((a, b) => a.id > b.id ? -1 : 1)
+ let sortedNotifications = notificationsFromStore(store).map(_ => _).sort((a, b) => a.action.id > b.action.id ? -1 : 1)
sortedNotifications = sortBy(sortedNotifications, 'seen')
return sortedNotifications.filter((notification) => visibleTypes(store).includes(notification.type))
}