mirror of
https://github.com/projectacrn/acrn-hypervisor.git
synced 2025-06-20 20:53:46 +00:00
config-tools: use VMname instead of VMId
Show VMname in the warning window when trying to delete a VM from UI. Tracked-On: #7532 Signed-off-by: Conghui <conghui.chen@intel.com>
This commit is contained in:
parent
1dd5060e9e
commit
f5e58e6f33
@ -250,7 +250,8 @@ export default {
|
||||
msg = "Post-launched VMs require the Service VM. If you proceed, all post-launched VMs and their settings will also be deleted. Are you sure you want to proceed?"
|
||||
isserivevm = true
|
||||
} else {
|
||||
msg = `Delete this virtual machine? VM${this.activeVMID}\n\nThe associated launch script will also be deleted if it exists.`
|
||||
let vmName= this.scenario.vm[this.activeVMID].name
|
||||
msg = `Delete this virtual machine? ${vmName}\n\nThe associated launch script will also be deleted if it exists.`
|
||||
}
|
||||
confirm(msg).then((r) => {
|
||||
if (r) {
|
||||
|
Loading…
Reference in New Issue
Block a user