DaanHoogland commented on code in PR #11899:
URL: https://github.com/apache/cloudstack/pull/11899#discussion_r2571221481
##########
ui/src/views/network/VpcTiersTab.vue:
##########
@@ -193,8 +193,9 @@
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 style="width: 200%;" v-for="item in
networkOfferings" :key="item.id" :value="item.id" :label="item.displaytext ||
item.name || item.description">
Review Comment:
```suggestion
<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">
```
@shwstppr , applying your alternative, just wondering if I should leave the
:label in as well?
cc @kiranchavala
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]