We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e25cf43 commit 2ab28ffCopy full SHA for 2ab28ff
ui/src/views/network/VpcTiersTab.vue
@@ -193,8 +193,14 @@
193
optionFilterProp="label"
194
:filterOption="(input, option) => {
195
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">
+ }"
+ >
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">
204
{{ item.displaytext || item.name || item.description }}
205
</a-select-option>
206
</a-select>
0 commit comments