Skip to content

Commit 338dc13

Browse files
authored
Update select options
1 parent 5aca736 commit 338dc13

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

ui/src/views/network/VpcTiersTab.vue

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,12 @@
195195
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
196196
}"
197197
>
198-
<a-select-option style="width: 200%;" v-for="item in networkOfferings" :key="item.id" :value="item.id" :label="item.displaytext || item.name || item.description">
198+
<a-select-option
199+
v-for="item in networkOfferings"
200+
:key="item.id"
201+
:value=“item.id"
202+
:label="item.displaytext || item.name || item.description”
203+
:title="item.displaytext || item.name || item.description">
199204
{{ item.displaytext || item.name || item.description }}
200205
</a-select-option>
201206
</a-select>

0 commit comments

Comments
 (0)