Skip to content

Commit 2ab28ff

Browse files
author
Daan Hoogland
committed
set width of dropdown select items for Network Offering during add tier dialog
1 parent e25cf43 commit 2ab28ff

File tree

1 file changed

+8
-2
lines changed

1 file changed

+8
-2
lines changed

ui/src/views/network/VpcTiersTab.vue

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,8 +193,14 @@
193193
optionFilterProp="label"
194194
:filterOption="(input, option) => {
195195
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
196-
}" >
197-
<a-select-option v-for="item in networkOfferings" :key="item.id" :value="item.id" :label="item.displaytext || item.name || item.description">
196+
}"
197+
>
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">
198204
{{ item.displaytext || item.name || item.description }}
199205
</a-select-option>
200206
</a-select>

0 commit comments

Comments
 (0)