diff --git a/aleksis/core/frontend/components/notifications/NotificationList.vue b/aleksis/core/frontend/components/notifications/NotificationList.vue index 08914210eefc7ecd2f52ea24342abf1d1467e5c9..09b27197e5d62c5a5f15f7836d5b741925d21cc8 100644 --- a/aleksis/core/frontend/components/notifications/NotificationList.vue +++ b/aleksis/core/frontend/components/notifications/NotificationList.vue @@ -88,7 +88,7 @@ export default { }, computed: { unreadNotifications() { - return this.myNotifications.filter(n => !n.read); + return this.myNotifications.filter((n) => !n.read); }, }, };