This is an automated email from the ASF dual-hosted git repository.
harikrishna pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/main by this push:
new f52a27cce6d UI: Minor fix for extra params display for VMware to KVM
migration (#11909)
f52a27cce6d is described below
commit f52a27cce6d3f96aada89c05cf411a7dd607b41c
Author: Nicolas Vazquez <[email protected]>
AuthorDate: Mon Oct 27 01:13:03 2025 -0300
UI: Minor fix for extra params display for VMware to KVM migration (#11909)
---
ui/src/views/tools/ImportUnmanagedInstance.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/src/views/tools/ImportUnmanagedInstance.vue
b/ui/src/views/tools/ImportUnmanagedInstance.vue
index 8cc27b2a86d..1d5bec8be74 100644
--- a/ui/src/views/tools/ImportUnmanagedInstance.vue
+++ b/ui/src/views/tools/ImportUnmanagedInstance.vue
@@ -785,7 +785,7 @@ export default {
if (json.listconfigurationsresponse.configuration !== null) {
const config = json.listconfigurationsresponse.configuration[0]
if (config && config.name === params.name) {
- this.vmwareToKvmExtraParamsAllowed = config.value
+ this.vmwareToKvmExtraParamsAllowed = config.value === 'true'
}
}
})