This is an automated email from the ASF dual-hosted git repository.

dahn 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 77cc75ab02a Fix radio buttons in instance migration pop-up (#8836)
77cc75ab02a is described below

commit 77cc75ab02a77fdabe58315a1dc9af6c6f2ab04f
Author: Fabricio Duarte <fabricio.duarte...@gmail.com>
AuthorDate: Sat Jul 13 16:32:19 2024 -0300

    Fix radio buttons in instance migration pop-up (#8836)
---
 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 a67e7a5244f..139ff856a2a 100644
--- a/ui/src/views/compute/MigrateVMStorage.vue
+++ b/ui/src/views/compute/MigrateVMStorage.vue
@@ -24,7 +24,7 @@
     </a-alert>
     <a-radio-group
       v-if="migrateVmWithVolumeAllowed"
-      :defaultValue="migrateMode"
+      v-model:value="migrateMode"
       @change="e => { handleMigrateModeChange(e.target.value) }">
       <a-radio class="radio-style" :value="1">
         {{ $t('label.migrate.instance.single.storage') }}

Reply via email to