mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-05-31 14:30:43 +00:00
13 lines
326 B
HTML
13 lines
326 B
HTML
<button mat-menu-item (click)="openConsole()">
|
|
<mat-icon>web_asset</mat-icon>
|
|
<span>Console</span>
|
|
</button>
|
|
<button
|
|
mat-menu-item
|
|
*ngIf="node.node_type === 'docker' || node.node_type === 'dynamips'"
|
|
(click)="openConsole(auxiliary=true)"
|
|
>
|
|
<mat-icon>web_asset</mat-icon>
|
|
<span>Auxiliary console</span>
|
|
</button>
|