I resolved "Cannot add Qemu template manually bug

#1287"
This commit is contained in:
Sakshi Goel
2022-04-13 13:47:03 +05:30
parent 97d1bc7596
commit 5e65aff228
5 changed files with 39 additions and 21 deletions

View File

@ -29,16 +29,16 @@
</form>
</mat-step>
<mat-step label="QEMU binary and memory" [completed]="memoryForm.get('ramMemory').value && selectedBinary">
<mat-step label="Platform and memory" [completed]="memoryForm.get('ramMemory').value && selectedPlatform">
<form [formGroup]="memoryForm">
<mat-form-field class="form-field">
<mat-select
placeholder="Qemu binary"
[(ngModel)]="selectedBinary"
placeholder="Platform"
[(ngModel)]="selectedPlatform"
[ngModelOptions]="{ standalone: true }"
>
<mat-option *ngFor="let binary of qemuBinaries" [value]="binary">
{{ binary.path }}
<mat-option *ngFor="let platform of selectPlatform " [value]="platform">
{{ platform }}
</mat-option>
</mat-select> </mat-form-field
><br />