22 lines
637 B
HTML
22 lines
637 B
HTML
<div class="ui-g">
|
|
<div class="ui-g-12">
|
|
<ng-container [ngSwitch]="node.group">
|
|
|
|
<ng-container *ngSwitchCase="'zone'">
|
|
<app-zone-detail [zone]="node.target" (otherHostSelect)="otherHostSelected($event)"></app-zone-detail>
|
|
</ng-container>
|
|
|
|
<ng-container *ngSwitchCase="'host'">
|
|
<app-host-detail [host]="node.target"></app-host-detail>
|
|
</ng-container>
|
|
|
|
<ng-container *ngSwitchCase="'service'">
|
|
<app-service-detail [service]="node.target"></app-service-detail>
|
|
</ng-container>
|
|
|
|
<ng-container *ngSwitchDefault>
|
|
</ng-container>
|
|
|
|
</ng-container>
|
|
</div>
|
|
</div> |