aboutsummaryrefslogtreecommitdiffstats
path: root/catalog-ui/src/app/ng2/pages/composition/panel/panel-tabs/groups/group-tabs.component.html
blob: 94b66195005a39b0ec4925b936ec1a3c7904a6dc (plain)
1
2
3
4
5
6
7
8
9
10
11
<sdc-tabs>
    <sdc-tab titleIcon="info-circle">
        <group-information-tab [group]="group" [isViewOnly]="isViewOnly" *ngIf="group"></group-information-tab>
    </sdc-tab>
    <sdc-tab titleIcon="inputs-o">
        <group-members-tab [group]="group" [topologyTemplate]="topologyTemplate" [isViewOnly]="isViewOnly" (isLoading)="setIsLoading($event)" *ngIf="group"></group-members-tab>
    </sdc-tab>
    <sdc-tab titleIcon="settings-o">
        <group-properties-tab [group]="group" [topologyTemplate]="topologyTemplate" [isViewOnly]="isViewOnly" *ngIf="group"></group-properties-tab>
    </sdc-tab>
</sdc-tabs>