This is an automated email from the ASF dual-hosted git repository.
nvazquez pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/cloudstack.git
The following commit(s) were added to refs/heads/main by this push:
new 25f92c50f0b ui: Fix Internal LB LB rule column and missing translation
(#6288)
25f92c50f0b is described below
commit 25f92c50f0b7634043181683e4bae904a9fb7417
Author: Pearl Dsilva <[email protected]>
AuthorDate: Wed Apr 20 19:03:43 2022 +0530
ui: Fix Internal LB LB rule column and missing translation (#6288)
---
ui/public/locales/en.json | 1 +
ui/src/components/view/ListView.vue | 3 +++
2 files changed, 4 insertions(+)
diff --git a/ui/public/locales/en.json b/ui/public/locales/en.json
index eb8cca525d1..8e2f52658ad 100644
--- a/ui/public/locales/en.json
+++ b/ui/public/locales/en.json
@@ -2085,6 +2085,7 @@
"label.source.nat.supported": "SourceNAT Supported",
"label.sourcecidr": "Source CIDR",
"label.sourceipaddress": "Source IP Address",
+"label.sourceipaddressnetworkid": "Network ID of Source IP Address",
"label.sourcenat": "Source NAT",
"label.sourcenatsupported": "Source NAT Supported",
"label.sourcenattype": "Supported Source NAT type",
diff --git a/ui/src/components/view/ListView.vue
b/ui/src/components/view/ListView.vue
index 7899d88fb2a..9134c18488e 100644
--- a/ui/src/components/view/ListView.vue
+++ b/ui/src/components/view/ListView.vue
@@ -295,6 +295,9 @@
<status :text="record.requiresupgrade ? 'warning' : ''" />
{{ record.requiresupgrade ? 'Yes' : 'No' }}
</template>
+ <template #loadbalancerrule="{ record }">
+ <span> {{ record.loadbalancerrule }} </span>
+ </template>
<template #autoscalingenabled="{ record }">
<status :text="record.autoscalingenabled ? 'Enabled' : 'Disabled'" />
{{ record.autoscalingenabled ? 'Enabled' : 'Disabled' }}