Files
paperless-ngx/src-ui/src/app/components/common/toasts/toasts.component.html
2020-10-27 01:11:32 +01:00

6 lines
182 B
HTML

<ngb-toast
*ngFor="let toast of toasts"
[header]="toast.title" [autohide]="true" [delay]="toast.delay"
(hide)="toastService.closeToast(toast)">
{{toast.content}}
</ngb-toast>