set width of dropdown select items for Network Offering during add tier dialog (#11899)

This commit is contained in:
dahn 2026-03-05 19:52:28 +01:00 committed by GitHub
parent 65e54091ff
commit 120a43648b
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 8 additions and 2 deletions

View File

@ -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>