From 817c7c348004e22b42646e66e277a1dcbc1ae420 Mon Sep 17 00:00:00 2001 From: Abhishek Kumar Date: Fri, 29 Oct 2021 23:43:37 +0530 Subject: [PATCH] ui: fix jobid key for migrate VM storage (#5644) Signed-off-by: Abhishek Kumar --- 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 80d644dccd1..0a22f1023cd 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}`,