This is an automated email from the ASF dual-hosted git repository.
nvazquez 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 817c7c3 ui: fix jobid key for migrate VM storage (#5644)
817c7c3 is described below
commit 817c7c348004e22b42646e66e277a1dcbc1ae420
Author: Abhishek Kumar <[email protected]>
AuthorDate: Fri Oct 29 23:43:37 2021 +0530
ui: fix jobid key for migrate VM storage (#5644)
Signed-off-by: Abhishek Kumar <[email protected]>
---
ui/src/views/compute/MigrateVMStorage.vue | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/ui/src/views/compute/MigrateVMStorage.vue
b/ui/src/views/compute/MigrateVMStorage.vue
index 80d644d..0a22f10 100644
--- a/ui/src/views/compute/MigrateVMStorage.vue
+++ b/ui/src/views/compute/MigrateVMStorage.vue
@@ -176,7 +176,7 @@ export default {
} else if (migrateApi === 'migrateSystemVm') {
jobId = response.migratesystemvmresponse.jobid
} else {
- jobId = response.migratevirtualmachine.jobid
+ jobId = response.migratevirtualmachineresponse.jobid
}
this.$pollJob({
title: `${this.$t('label.migrating')} ${this.resource.name}`,