summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/shared/components/motd/motd.component.html
blob: 2fbe5d7f87d3ca918f650716d76944c28e8a739a (plain)
1
2
3
4
5
6
7
8
<cd-alert-panel *ngIf="motd"
                size="slim"
                [showTitle]="false"
                [type]="motd.severity"
                [dismissible]="motd.severity !== 'danger'"
                (dismissed)="onDismissed()">
  <span [innerHTML]="motd.message | sanitizeHtml"></span>
</cd-alert-panel>