+
{{ notification.body }}
diff --git a/ui/src/app/notification/component/notification-item.component.ts b/ui/src/app/notification/component/notification-item.component.ts index a5a80c09d..bc7b93e27 100644 --- a/ui/src/app/notification/component/notification-item.component.ts +++ b/ui/src/app/notification/component/notification-item.component.ts @@ -1,8 +1,4 @@ import { Component, Input, Output, EventEmitter, OnInit } from '@angular/core'; -import { Observable } from 'rxjs'; -import { Store } from '@ngrx/store'; - -import * as fromNotifications from '../reducer'; import { Notification } from '../model/notification'; @Component({ @@ -13,12 +9,6 @@ import { Notification } from '../model/notification'; export class NotificationItemComponent implements OnInit { @Input() notification: Notification; @Output() clear: EventEmitter