mirror of
https://github.com/paperless-ngx/paperless-ngx.git
synced 2025-04-02 13:45:10 -05:00
9 lines
399 B
HTML
9 lines
399 B
HTML
<ngb-toast
|
|
*ngFor="let toast of toasts"
|
|
[header]="toast.title" [autohide]="true" [delay]="toast.delay"
|
|
[class]="toast.classname"
|
|
(hidden)="toastService.closeToast(toast)">
|
|
<p>{{toast.content}}</p>
|
|
<p class="mb-0" *ngIf="toast.action"><button class="btn btn-sm btn-outline-secondary" (click)="toastService.closeToast(toast); toast.action()">{{toast.actionName}}</button></p>
|
|
</ngb-toast>
|