summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/cephfs/cephfs-list/cephfs-list.component.html
blob: 05960e87fa1975065b17cd2621dd4f636ca7a58e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
<cd-table [data]="filesystems"
          columnMode="flex"
          [columns]="columns"
          (fetchData)="loadFilesystems($event)"
          identifier="id"
          forceIdentifier="true"
          selectionType="single"
          [hasDetails]="true"
          (setExpandedRow)="setExpandedRow($event)"
          (updateSelection)="updateSelection($event)">
  <cd-cephfs-tabs cdTableDetail
                  [selection]="expandedRow">
  </cd-cephfs-tabs>
</cd-table>