mirror of
https://github.com/DSpace/dspace-angular.git
synced 2025-10-18 15:33:04 +00:00
10 lines
397 B
HTML
10 lines
397 B
HTML
<div *ngIf="!dismissed" class="alert {{type}} alert-dismissible fade show w-100" role="alert" [@enterLeave]="animate">
|
|
<span *ngIf="content" [innerHTML]="content | translate"></span>
|
|
|
|
<ng-content></ng-content>
|
|
|
|
<button *ngIf="dismissible" type="button" class="close" data-dismiss="alert" aria-label="Close" (click)="dismiss()">
|
|
<span aria-hidden="true">×</span>
|
|
</button>
|
|
</div>
|