member_webapp/@overflow/shared/ui/component/host-ips-overlay.component.html
2018-06-15 12:56:54 +09:00

7 lines
278 B
HTML

<p-overlayPanel #op *ngIf="infraHostIPs && infraHostIPs.length > 1">
<div *ngFor="let ip of infraHostIPs">
{{ip.address}}
</div>
</p-overlayPanel>
<a style="cursor: pointer; text-decoration: underline" (click)="op.toggle($event)">{{infraHostIPs[0].address}}</a>