Press n or j to go to the next uncovered block, b, p or k for the previous block.
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 | 6x | <cd-table #table
[data]="exports"
columnMode="flex"
[columns]="columns"
identifier="id"
forceIdentifier="true"
selectionType="single"
(updateSelection)="updateSelection($event)">
<div class="table-actions btn-toolbar">
<cd-table-actions class="btn-group"
[permission]="permission"
[selection]="selection"
[tableActions]="tableActions">
</cd-table-actions>
</div>
<cd-nfs-details cdTableDetail
[selection]="selection">
</cd-nfs-details>
</cd-table>
<ng-template #nfsFsal
let-value="value">
<ng-container *ngIf="value.name==='CEPH'"
i18n>CephFS</ng-container>
<ng-container *ngIf="value.name==='RGW'"
i18n>Object Gateway</ng-container>
</ng-template>
|