Skip to content

Commit

Permalink
fix: zoneless NotifyComponent
Browse files Browse the repository at this point in the history
  • Loading branch information
ralfaron committed Jun 21, 2024
1 parent b236d5d commit 072e460
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion projects/aas-lib/src/lib/notify/notify.component.ts
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
*
*****************************************************************************/

import { Component, OnInit } from '@angular/core';
import { ChangeDetectionStrategy, Component, OnInit } from '@angular/core';
import { MessageEntry } from '../types/message-entry';
import { NotifyService } from './notify.service';
import { NgbToast } from '@ng-bootstrap/ng-bootstrap';
Expand All @@ -17,6 +17,7 @@ import { NgbToast } from '@ng-bootstrap/ng-bootstrap';
styleUrls: ['./notify.component.scss'],
standalone: true,
imports: [NgbToast],
changeDetection: ChangeDetectionStrategy.OnPush,
})
export class NotifyComponent implements OnInit {
public constructor(private readonly notify: NotifyService) {}
Expand Down

0 comments on commit 072e460

Please sign in to comment.