]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/block/mirroring/pool-list/pool-list.component.html
update sources to ceph Nautilus 14.2.1
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / block / mirroring / pool-list / pool-list.component.html
CommitLineData
11fdf7f2
TL
1<cd-table [data]="data"
2 columnMode="flex"
3 [columns]="columns"
4 identifier="name"
5 forceIdentifier="true"
6 [autoReload]="0"
7 (fetchData)="refresh()"
8 selectionType="single"
9 (updateSelection)="updateSelection($event)">
10 <cd-table-actions class="table-actions"
11 [permission]="permission"
12 [selection]="selection"
13 [tableActions]="tableActions">
14 </cd-table-actions>
15</cd-table>
16
17<ng-template #healthTmpl
18 let-row="row"
19 let-value="value">
20 <span [ngClass]="row.health_color | mirrorHealthColor">{{ value }}</span>
21</ng-template>