]> 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 source to Ceph Pacific 16.2.2
[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"
e306af50 6 [autoReload]="-1"
11fdf7f2
TL
7 (fetchData)="refresh()"
8 selectionType="single"
f67539c2
TL
9 (updateSelection)="updateSelection($event)"
10 [status]="tableStatus">
11fdf7f2
TL
11 <cd-table-actions class="table-actions"
12 [permission]="permission"
13 [selection]="selection"
14 [tableActions]="tableActions">
15 </cd-table-actions>
16</cd-table>
17
18<ng-template #healthTmpl
19 let-row="row"
20 let-value="value">
21 <span [ngClass]="row.health_color | mirrorHealthColor">{{ value }}</span>
22</ng-template>