]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/service-daemon-list/service-daemon-list.component.html
import 15.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / services / service-daemon-list / service-daemon-list.component.html
CommitLineData
9f95a23c
TL
1<cd-orchestrator-doc-panel *ngIf="!hasOrchestrator"></cd-orchestrator-doc-panel>
2<cd-table *ngIf="hasOrchestrator"
3 #daemonsTable
4 [data]="daemons"
5 [columns]="columns"
6 columnMode="flex"
7 [autoReload]="60000"
8 (fetchData)="getDaemons($event)">
9</cd-table>
e306af50
TL
10
11<ng-template #statusTpl
12 let-row="row">
13 <span class="badge"
14 [ngClass]="getStatusClass(row.status)">
15 {{ row.status_desc }}
16 </span>
17</ng-template>