ngOnInit()

in app/src/app/components/notifications/notifications.component.ts [18:25]


  ngOnInit() {
    this.notifService.notifications.subscribe((notif) => {
      this._notifications[notif.message] = notif;
      setTimeout(() => {
        this._notifications[notif.message].show = true
      }, 10);
    })
  }