paperless-ngx/src-ui/src/app/components/common/toasts/toasts.component.html

7 lines
210 B
HTML
Raw Normal View History

2020-10-27 01:10:18 +01:00
<ngb-toast
*ngFor="let toast of toasts"
[header]="toast.title" [autohide]="true" [delay]="toast.delay"
2020-10-29 14:35:36 +01:00
[class]="toast.classname"
2020-10-27 01:10:18 +01:00
(hide)="toastService.closeToast(toast)">
{{toast.content}}
</ngb-toast>