]> git.proxmox.com Git - ceph.git/blobdiff - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/view-cache/view-cache.component.html
import 15.2.0 Octopus source
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / view-cache / view-cache.component.html
index 73e9ea6ad137878f00ee1849f0b77f500bfc1534..05afc42bcf2602e4290d00f6ec6c950cefa692fc 100644 (file)
@@ -1,15 +1,18 @@
-<cd-info-panel *ngIf="status === vcs.ValueNone">
+<cd-alert-panel type="info"
+                *ngIf="status === vcs.ValueNone">
   <ng-container i18n>Retrieving data<span *ngIf="statusFor"> for
   <span [innerHtml]="statusFor"></span></span>. Please wait...</ng-container>
-</cd-info-panel>
+</cd-alert-panel>
 
-<cd-warning-panel *ngIf="status === vcs.ValueStale">
+<cd-alert-panel *ngIf="status === vcs.ValueStale"
+                type="warning">
   <ng-container i18n>Displaying previously cached data<span *ngIf="statusFor">
   for <span [innerHtml]="statusFor"></span></span>.</ng-container>
-</cd-warning-panel>
+</cd-alert-panel>
 
-<cd-error-panel *ngIf="status === vcs.ValueException">
+<cd-alert-panel type="error"
+                *ngIf="status === vcs.ValueException">
   <ng-container i18n>Could not load data<span *ngIf="statusFor"> for
   <span [innerHtml]="statusFor"></span></span>.
   Please check the cluster health.</ng-container>
-</cd-error-panel>
+</cd-alert-panel>