]> git.proxmox.com Git - ceph.git/blame - ceph/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/configuration/configuration.component.html
import 15.2.4
[ceph.git] / ceph / src / pybind / mgr / dashboard / frontend / src / app / ceph / cluster / configuration / configuration.component.html
CommitLineData
9f95a23c 1<cd-table [data]="data"
11fdf7f2
TL
2 (fetchData)="getConfigurationList($event)"
3 [columns]="columns"
9f95a23c 4 [extraFilterableColumns]="filters"
11fdf7f2 5 selectionType="single"
e306af50
TL
6 [hasDetails]="true"
7 (setExpandedRow)="setExpandedRow($event)"
11fdf7f2
TL
8 (updateSelection)="updateSelection($event)">
9 <cd-table-actions class="table-actions"
10 [permission]="permission"
11 [selection]="selection"
12 [tableActions]="tableActions">
13 </cd-table-actions>
11fdf7f2 14 <cd-configuration-details cdTableDetail
e306af50 15 [selection]="expandedRow">
11fdf7f2
TL
16 </cd-configuration-details>
17</cd-table>
18
9f95a23c
TL
19<ng-template #confValTpl
20 let-value="value">
11fdf7f2
TL
21 <span *ngIf="value">
22 <span *ngFor="let conf of value; last as isLast">
9f95a23c 23 {{ conf.section }}: {{ conf.value }}{{ !isLast ? "," : "" }}<br />
11fdf7f2
TL
24 </span>
25 </span>
26</ng-template>