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

dahn pushed a commit to branch 4.22
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/4.22 by this push:
     new dba889ea3ef UI: fix list of zones if zone has icon (#12083)
dba889ea3ef is described below

commit dba889ea3efb05812290647515d4bad5318f84e0
Author: Wei Zhou <[email protected]>
AuthorDate: Mon Nov 24 11:10:43 2025 +0100

    UI: fix list of zones if zone has icon (#12083)
---
 ui/src/views/compute/wizard/ZoneBlockRadioGroupSelect.vue | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/ui/src/views/compute/wizard/ZoneBlockRadioGroupSelect.vue 
b/ui/src/views/compute/wizard/ZoneBlockRadioGroupSelect.vue
index 2250fc7977d..9c889d3aa5a 100644
--- a/ui/src/views/compute/wizard/ZoneBlockRadioGroupSelect.vue
+++ b/ui/src/views/compute/wizard/ZoneBlockRadioGroupSelect.vue
@@ -29,7 +29,7 @@
     </template>
     <template #select-option="{ item }">
       <span>
-        <resource-icon v-if="item.icon && zone1.icon.base64image" 
:image="item.icon.base64image" size="2x" style="margin-right: 5px"/>
+        <resource-icon v-if="item.icon && item.icon.base64image" 
:image="item.icon.base64image" size="2x" style="margin-right: 5px"/>
         <global-outlined v-else style="margin-right: 5px" />
         {{ item.name }}
       </span>

Reply via email to