summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/inventory/inventory-devices/inventory-devices.component.html
blob: 54cee708d263407cc9e365d33e444f558a089781 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<cd-table [data]="devices"
          [columns]="columns"
          identifier="uid"
          [forceIdentifier]="true"
          [selectionType]="selectionType"
          columnMode="flex"
          (fetchData)="getDevices()"
          [searchField]="false"
          (updateSelection)="updateSelection($event)"
          (columnFiltersChanged)="onColumnFiltersChanged($event)">
  <cd-table-actions class="table-actions"
                    [permission]="permission"
                    [selection]="selection"
                    [tableActions]="tableActions">
  </cd-table-actions>
</cd-table>