diff --git a/lib/core/src/lib/notifications/components/add-notification.stories.component.ts b/lib/core/src/lib/notifications/components/add-notification.stories.component.ts index c3416ce5e08..6b1efd19271 100644 --- a/lib/core/src/lib/notifications/components/add-notification.stories.component.ts +++ b/lib/core/src/lib/notifications/components/add-notification.stories.component.ts @@ -17,16 +17,18 @@ import { Component } from '@angular/core'; import { NotificationService } from '../services/notification.service'; +import { MatButtonModule } from '@angular/material/button'; @Component({ selector: 'adf-add-notification-storybook', - template: `` + standalone: true, + imports: [MatButtonModule], + template: ` ` }) export class AddNotificationStorybookComponent { - infoCounter: number = 1; - constructor(private notificationService: NotificationService) { } + constructor(private notificationService: NotificationService) {} showInfo() { this.notificationService.showInfo(`Example notification ${this.infoCounter}`); diff --git a/lib/core/src/lib/notifications/components/notification-history.component.html b/lib/core/src/lib/notifications/components/notification-history.component.html index f216ed94ca5..861767a6f26 100644 --- a/lib/core/src/lib/notifications/components/notification-history.component.html +++ b/lib/core/src/lib/notifications/components/notification-history.component.html @@ -1,38 +1,34 @@