Skip to content

Commit 25f92c5

Browse files
authored
ui: Fix Internal LB LB rule column and missing translation (#6288)
1 parent 9f076ff commit 25f92c5

File tree

2 files changed

+4
-0
lines changed

2 files changed

+4
-0
lines changed

ui/public/locales/en.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2085,6 +2085,7 @@
20852085
"label.source.nat.supported": "SourceNAT Supported",
20862086
"label.sourcecidr": "Source CIDR",
20872087
"label.sourceipaddress": "Source IP Address",
2088+
"label.sourceipaddressnetworkid": "Network ID of Source IP Address",
20882089
"label.sourcenat": "Source NAT",
20892090
"label.sourcenatsupported": "Source NAT Supported",
20902091
"label.sourcenattype": "Supported Source NAT type",

ui/src/components/view/ListView.vue

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -295,6 +295,9 @@
295295
<status :text="record.requiresupgrade ? 'warning' : ''" />
296296
{{ record.requiresupgrade ? 'Yes' : 'No' }}
297297
</template>
298+
<template #loadbalancerrule="{ record }">
299+
<span> {{ record.loadbalancerrule }} </span>
300+
</template>
298301
<template #autoscalingenabled="{ record }">
299302
<status :text="record.autoscalingenabled ? 'Enabled' : 'Disabled'" />
300303
{{ record.autoscalingenabled ? 'Enabled' : 'Disabled' }}

0 commit comments

Comments
 (0)