]> git.proxmox.com Git - ceph.git/blob - ceph/src/pybind/mgr/dashboard/frontend/src/app/shared/components/cd-label/cd-label.component.html
update ceph source to reef 18.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / shared / components / cd-label / cd-label.component.html
1 <span *ngIf="!key; else key_value"
2 class="badge badge-{{value}}"
3 ngClass="{{value | colorClassFromText}}"
4 [ngbTooltip]="tooltipText">
5 {{ value }}
6 </span>
7
8 <ng-template #key_value>
9 <span class="badge badge-background-primary badge-{{key}}-{{value}}">
10 {{ key }}: {{ value }}
11 </span>
12 </ng-template>