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