gns3-web-ui/src/app/shared/node-select-interface/node-select-interface.component.html
2017-12-01 14:07:19 +01:00

10 lines
365 B
HTML

<div class="context-menu" [style.left]="leftPosition" [style.top]="topPosition" *ngIf="node">
<span [matMenuTriggerFor]="selectInterfaceMenu"></span>
<mat-menu #selectInterfaceMenu="matMenu">
<button mat-menu-item *ngFor="let port of node.ports">
<mat-icon>info</mat-icon>
<span>{{ port.name }}</span>
</button>
</mat-menu>
</div>