mirror of https://github.com/apache/cloudstack.git
set width of dropdown select items for Network Offering during add tier dialog (#11899)
This commit is contained in:
parent
65e54091ff
commit
120a43648b
|
|
@ -193,8 +193,14 @@
|
|||
optionFilterProp="label"
|
||||
:filterOption="(input, option) => {
|
||||
return option.label.toLowerCase().indexOf(input.toLowerCase()) >= 0
|
||||
}" >
|
||||
<a-select-option v-for="item in networkOfferings" :key="item.id" :value="item.id" :label="item.displaytext || item.name || item.description">
|
||||
}"
|
||||
>
|
||||
<a-select-option
|
||||
v-for="item in networkOfferings"
|
||||
:key="item.id"
|
||||
:value="item.id"
|
||||
:label="item.displaytext || item.name || item.description"
|
||||
:title="item.displaytext || item.name || item.description">
|
||||
{{ item.displaytext || item.name || item.description }}
|
||||
</a-select-option>
|
||||
</a-select>
|
||||
|
|
|
|||
Loading…
Reference in New Issue