summaryrefslogtreecommitdiffstats
path: root/src/pybind/mgr/dashboard/frontend/src/app/ceph/cluster/services/services.component.html
blob: 36ab431fc96b32b73b5bbfb0688a3781a9096e14 (plain)
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
<cd-orchestrator-doc-panel *ngIf="showDocPanel"></cd-orchestrator-doc-panel>
<ng-container *ngIf="orchStatus?.available">
  <cd-table [data]="services"
            [columns]="columns"
            identifier="service_name"
            forceIdentifier="true"
            columnMode="flex"
            selectionType="single"
            [autoReload]="5000"
            (fetchData)="getServices($event)"
            [hasDetails]="hasDetails"
            (setExpandedRow)="setExpandedRow($event)"
            (updateSelection)="updateSelection($event)">
    <cd-table-actions class="table-actions"
                      [permission]="permissions.hosts"
                      [selection]="selection"
                      [tableActions]="tableActions">
    </cd-table-actions>
    <cd-service-details cdTableDetail
                        [permissions]="permissions"
                        [selection]="expandedRow">
    </cd-service-details>
  </cd-table>
</ng-container>
<router-outlet name="modal"></router-outlet>