member_webapp/@overflow/discovery/component/request-summary.component.html

16 lines
625 B
HTML
Raw Normal View History

2018-05-31 07:03:59 +00:00
<div *ngIf="discoverZone">
2018-06-01 02:47:37 +00:00
<of-key-value [key]="'Host Range'" [value]="hostRange"></of-key-value>
<of-key-value [key]="'Port Range'" [value]="portRange"></of-key-value>
<span *ngIf="discoverZone.discoverHost.discoverPort.includeTCP">TCP</span>
<span *ngIf="discoverZone.discoverHost.discoverPort.includeUDP">UDP</span>
<div *ngIf="services.length > 0">
2018-06-01 03:22:42 +00:00
<p-overlayPanel #op>
<div *ngFor="let service of services">
{{service}}
</div>
</p-overlayPanel>
2018-06-01 02:47:37 +00:00
2018-06-01 03:22:42 +00:00
<a style="cursor: pointer" (click)="op.toggle($event)">{{services.length}} services has selected.</a>
</div>
2018-06-01 02:47:37 +00:00
</div>