remove Qemu code

This commit is contained in:
Rajnikant Lodhi 2022-08-01 17:23:04 +05:30
parent 4d5a5b8934
commit 24deb65a0b

View File

@ -42,39 +42,39 @@
<mat-tab label="Miscellaneous">
<form [formGroup]="generalSettingsForm">
<mat-form-field class="form-field">
<input
matInput type="text"
[(ngModel)]="node.name"
formControlName="name"
placeholder="Name">
<input matInput type="text" [(ngModel)]="node.name" formControlName="name" placeholder="Name" />
</mat-form-field>
</form>
<mat-form-field class="select">
<mat-select
placeholder="Console type"
[(ngModel)]="node.console_type">
<mat-select placeholder="Console type" [(ngModel)]="node.console_type">
<mat-option *ngFor="let type of consoleTypes" [value]="type">
{{type}}
{{ type }}
</mat-option>
</mat-select>
</mat-form-field>
<mat-form-field class="form-field">
<input
matInput type="text"
matInput
type="text"
[(ngModel)]="node.properties.remote_console_host"
placeholder="Console host">
placeholder="Console host"
/>
</mat-form-field>
<mat-form-field class="form-field">
<input
matInput type="text"
matInput
type="text"
[(ngModel)]="node.properties.remote_console_port"
placeholder="Console port">
placeholder="Console port"
/>
</mat-form-field>
<mat-form-field class="form-field">
<input
matInput type="text"
matInput
type="text"
[(ngModel)]="node.properties.remote_console_http_path"
placeholder="Console HTTP path">
placeholder="Console HTTP path"
/>
</mat-form-field>
</mat-tab>
@ -84,12 +84,13 @@
</mat-form-field>
</mat-tab>
</mat-tab-group>
</mat-card><div>
</mat-card>
<div></div>
</div>
</div>
</div>
<div mat-dialog-actions>
<div mat-dialog-actions>
<button mat-button (click)="onCancelClick()" color="accent">Cancel</button>
<button mat-button (click)="onSaveClick()" tabindex="2" mat-raised-button color="primary">Apply</button>
</div>
</div>