shwstppr commented on PR #11899: URL: https://github.com/apache/cloudstack/pull/11899#issuecomment-3588488783
@DaanHoogland I feel a bit more elegant way could be showing a tooltip when the item is hovered, <img width="1075" height="810" alt="image" src="https://github.com/user-attachments/assets/c683d8b3-9f5b-4b8b-b007-a8a1d46ee48e" /> ``` diff --git a/ui/src/views/network/VpcTiersTab.vue b/ui/src/views/network/VpcTiersTab.vue index 4f6aaef444..7fe706daba 100644 --- a/ui/src/views/network/VpcTiersTab.vue +++ b/ui/src/views/network/VpcTiersTab.vue @@ -194,7 +194,11 @@ :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" + :title="item.displaytext || item.name || item.description"> {{ item.displaytext || item.name || item.description }} </a-select-option> </a-select> ``` -- 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]
