diff --git a/src/app/shared/notifications/models/notification.model.ts b/src/app/shared/notifications/models/notification.model.ts index 938bd3c5a9..3c7c54e156 100644 --- a/src/app/shared/notifications/models/notification.model.ts +++ b/src/app/shared/notifications/models/notification.model.ts @@ -9,23 +9,23 @@ export interface INotification { title?: Observable | string; content?: Observable | string; options?: INotificationOptions; - html?: any; + html?: boolean; } export class Notification implements INotification { public id: string; public type: NotificationType; - public title: Observable | string; - public content: Observable | string; + public title: Observable | string; + public content: Observable | string; public options: INotificationOptions; - public html: any; + public html: boolean; constructor(id: string, type: NotificationType, - title?: Observable | string, - content?: Observable | string, + title?: Observable | string, + content?: Observable | string, options?: NotificationOptions, - html?: any) { + html?: boolean) { this.id = id; this.type = type; diff --git a/src/app/shared/notifications/notification/notification.component.html b/src/app/shared/notifications/notification/notification.component.html index e6f2ed4899..c52e29f43c 100644 --- a/src/app/shared/notifications/notification/notification.component.html +++ b/src/app/shared/notifications/notification/notification.component.html @@ -1,11 +1,11 @@ -