summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/mgr-modules/mgr-module-list/mgr-module-list.component.html
blob: 29b287de8bfe95de2ae296a9b20e6ea885b4af79 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
<cd-table #table
          [autoReload]="false"
          [data]="modules"
          [columns]="columns"
          columnMode="flex"
          selectionType="single"
          [hasDetails]="true"
          (setExpandedRow)="setExpandedRow($event)"
          (updateSelection)="updateSelection($event)"
          identifier="module"
          (fetchData)="getModuleList($event)">
  <cd-table-actions class="table-actions"
                    [permission]="permission"
                    [selection]="selection"
                    [tableActions]="tableActions">
  </cd-table-actions>
  <cd-mgr-module-details cdTableDetail
                         [selection]="expandedRow">
  </cd-mgr-module-details>
</cd-table>