mirror of
https://github.com/GNS3/gns3-web-ui.git
synced 2025-04-06 10:06:40 +00:00
Fix aux and aux_type usage
This commit is contained in:
parent
9523cd7703
commit
80884a7929
@ -14,6 +14,8 @@ export class Properties {
|
||||
headless: boolean;
|
||||
linked_clone: boolean;
|
||||
on_close: string;
|
||||
aux: number;
|
||||
aux_type: boolean;
|
||||
ram: number;
|
||||
system_id: string;
|
||||
npe?: string;
|
||||
@ -92,8 +94,6 @@ export class Node {
|
||||
console_auto_start: boolean;
|
||||
console_host: string;
|
||||
console_type: string;
|
||||
aux: number;
|
||||
aux_type: boolean;
|
||||
custom_adapters?: any[];
|
||||
ethernet_adapters?: any;
|
||||
serial_adapters?: any;
|
||||
|
@ -40,7 +40,7 @@
|
||||
</mat-select>
|
||||
</mat-form-field>
|
||||
<mat-form-field class="select">
|
||||
<mat-select placeholder="Auxiliary console type" [(ngModel)]="node.aux_type">
|
||||
<mat-select placeholder="Auxiliary console type" [(ngModel)]="node.properties.aux_type">
|
||||
<mat-option *ngFor="let type of consoleTypes" [value]="type">
|
||||
{{ type }}
|
||||
</mat-option>
|
||||
|
Loading…
x
Reference in New Issue
Block a user