From a1163f02745d54278c9c98ab5dca4d5dada7022a Mon Sep 17 00:00:00 2001 From: Rajnikant Lodhi Date: Mon, 1 Aug 2022 10:34:41 +0530 Subject: [PATCH] Modify platform selection on add new Qemu Component --- .../add-qemu-vm-template/add-qemu-vm-template.component.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/app/components/preferences/qemu/add-qemu-vm-template/add-qemu-vm-template.component.ts b/src/app/components/preferences/qemu/add-qemu-vm-template/add-qemu-vm-template.component.ts index 1a1f4c75..93aac9e7 100644 --- a/src/app/components/preferences/qemu/add-qemu-vm-template/add-qemu-vm-template.component.ts +++ b/src/app/components/preferences/qemu/add-qemu-vm-template/add-qemu-vm-template.component.ts @@ -65,7 +65,7 @@ export class AddQemuVmTemplateComponent implements OnInit { }); this.memoryForm = this.formBuilder.group({ - ramMemory: new FormControl('256', Validators.required), + ramMemory: new FormControl('', Validators.required), }); this.diskForm = this.formBuilder.group({ @@ -120,7 +120,7 @@ export class AddQemuVmTemplateComponent implements OnInit { }); this.selectPlatform = this.configurationService.getPlatform(); - this.selectedPlatform = this.selectPlatform[0]; + // this.selectedPlatform = this.selectPlatform[0]; this.consoleTypes = this.configurationService.getConsoleTypes(); });