Skip to content

Commit 52b93f8

Browse files
committed
UI: fix list of zones if zone has icon
1 parent 50fe265 commit 52b93f8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

ui/src/views/compute/wizard/ZoneBlockRadioGroupSelect.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,7 @@
2929
</template>
3030
<template #select-option="{ item }">
3131
<span>
32-
<resource-icon v-if="item.icon && zone1.icon.base64image" :image="item.icon.base64image" size="2x" style="margin-right: 5px"/>
32+
<resource-icon v-if="item.icon && item.icon.base64image" :image="item.icon.base64image" size="2x" style="margin-right: 5px"/>
3333
<global-outlined v-else style="margin-right: 5px" />
3434
{{ item.name }}
3535
</span>

0 commit comments

Comments
 (0)