]> git-server-git.apps.pok.os.sepia.ceph.com Git - ceph.git/blob
368d658506554218a2cbddaef5d9b48cc48d3893
[ceph.git] /
1 <cd-alert-panel *ngIf="listeners && listeners.length === 0"
2                 type="error"
3                 title="No listeners exists"
4                 spacingClass="cds-mb-3"
5                 i18n-title>
6   <ng-container i18n>Currently, there are no listeners available in the NVMe subsystem. Please check your configuration or try again later.</ng-container>
7 </cd-alert-panel>
8
9 <cd-table [data]="listeners"
10           columnMode="flex"
11           (fetchData)="listListeners()"
12           [columns]="listenerColumns"
13           identifier="id"
14           [autoReload]="true"
15           forceIdentifier="true"
16           selectionType="single"
17           emptyStateTitle="No listener found."
18           i18n-emptyStateTitle
19           emptyStateMessage="No listeners found. Add listeners to define network endpoints for hosts"
20           i18n-emptyStateMessage
21           [emptyStateIcon]="iconType.emptySearch"
22           (updateSelection)="updateSelection($event)">
23   <div class="table-actions">
24     <cd-table-actions [permission]="permission"
25                       [selection]="selection"
26                       class="btn-group"
27                       [tableActions]="tableActions">
28     </cd-table-actions>
29   </div>
30 </cd-table>