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

6 lines
182 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"
(hide)="toastService.closeToast(toast)">
{{toast.content}}
</ngb-toast>