This commit is contained in:
grossmj 2022-07-29 09:35:16 +02:00
parent f75e7e0e10
commit 37684efe79

View File

@ -42,16 +42,16 @@
<mat-tab label="Miscellaneous"> <mat-tab label="Miscellaneous">
<form [formGroup]="generalSettingsForm"> <form [formGroup]="generalSettingsForm">
<mat-form-field class="form-field"> <mat-form-field class="form-field">
<input <input
matInput type="text" matInput type="text"
[(ngModel)]="node.name" [(ngModel)]="node.name"
formControlName="name" formControlName="name"
placeholder="Name"> placeholder="Name">
</mat-form-field> </mat-form-field>
</form> </form>
<mat-form-field class="select"> <mat-form-field class="select">
<mat-select <mat-select
placeholder="Console type" placeholder="Console type"
[(ngModel)]="node.console_type"> [(ngModel)]="node.console_type">
<mat-option *ngFor="let type of consoleTypes" [value]="type"> <mat-option *ngFor="let type of consoleTypes" [value]="type">
{{type}} {{type}}
@ -59,21 +59,21 @@
</mat-select> </mat-select>
</mat-form-field> </mat-form-field>
<mat-form-field class="form-field"> <mat-form-field class="form-field">
<input <input
matInput type="text" matInput type="text"
[(ngModel)]="node.properties.remote_console_host" [(ngModel)]="node.properties.remote_console_host"
placeholder="Console host"> placeholder="Console host">
</mat-form-field> </mat-form-field>
<mat-form-field class="form-field"> <mat-form-field class="form-field">
<input <input
matInput type="text" matInput type="text"
[(ngModel)]="node.properties.remote_console_port" [(ngModel)]="node.properties.remote_console_port"
placeholder="Console port"> placeholder="Console port">
</mat-form-field> </mat-form-field>
<mat-form-field class="form-field"> <mat-form-field class="form-field">
<input <input
matInput type="text" matInput type="text"
[(ngModel)]="node.properties.remote_console_http_path" [(ngModel)]="node.properties.remote_console_http_path"
placeholder="Console HTTP path"> placeholder="Console HTTP path">
</mat-form-field> </mat-form-field>
</mat-tab> </mat-tab>
@ -84,7 +84,7 @@
</mat-form-field> </mat-form-field>
</mat-tab> </mat-tab>
</mat-tab-group> </mat-tab-group>
</mat-card>iv> </mat-card><div>
</div> </div>
</div> </div>
</div> </div>