Fix aux and aux_type usage

This commit is contained in:
grossmj 2025-02-04 14:23:32 +10:00
parent 9523cd7703
commit 80884a7929
No known key found for this signature in database
GPG Key ID: 1E7DD6DBB53FF3D7
2 changed files with 3 additions and 3 deletions

View File

@ -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;

View File

@ -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>