aboutsummaryrefslogtreecommitdiffhomepage
path: root/client/src/app/menu/notification.component.ts
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/app/menu/notification.component.ts')
-rw-r--r--client/src/app/menu/notification.component.ts8
1 files changed, 4 insertions, 4 deletions
diff --git a/client/src/app/menu/notification.component.ts b/client/src/app/menu/notification.component.ts
index b7d9e9abb..ac9c79991 100644
--- a/client/src/app/menu/notification.component.ts
+++ b/client/src/app/menu/notification.component.ts
@@ -36,14 +36,14 @@ export class NotificationComponent implements OnInit, OnDestroy {
36 36
37 ngOnInit () { 37 ngOnInit () {
38 this.userNotificationService.countUnreadNotifications() 38 this.userNotificationService.countUnreadNotifications()
39 .subscribe( 39 .subscribe({
40 result => { 40 next: result => {
41 this.unreadNotifications = Math.min(result, 99) // Limit number to 99 41 this.unreadNotifications = Math.min(result, 99) // Limit number to 99
42 this.subscribeToNotifications() 42 this.subscribeToNotifications()
43 }, 43 },
44 44
45 err => this.notifier.error(err.message) 45 error: err => this.notifier.error(err.message)
46 ) 46 })
47 47
48 this.routeSub = this.router.events 48 this.routeSub = this.router.events
49 .pipe(filter(event => event instanceof NavigationEnd)) 49 .pipe(filter(event => event instanceof NavigationEnd))