This is an automated email from the ASF dual-hosted git repository.

rohit pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/cloudstack.git


The following commit(s) were added to refs/heads/master by this push:
     new c160e75  ui: fix LB protocol bug (#3438)
c160e75 is described below

commit c160e7532aed9a85f7a1c12892c2e139a817cf54
Author: Rohit Yadav <[email protected]>
AuthorDate: Sat Jun 29 00:23:36 2019 +0530

    ui: fix LB protocol bug (#3438)
    
    Fixes #3252
    
    This fixes labels for missing LB protocol(s).
    
    Signed-off-by: Rohit Yadav <[email protected]>
---
 ui/l10n/en.js         | 1 +
 ui/scripts/network.js | 4 ++++
 2 files changed, 5 insertions(+)

diff --git a/ui/l10n/en.js b/ui/l10n/en.js
index aca4d99..cd5f44d 100644
--- a/ui/l10n/en.js
+++ b/ui/l10n/en.js
@@ -989,6 +989,7 @@ var dictionary = {
 "label.lb.protocol.http":"HTTP",
 "label.lb.protocol.ssl":"SSL",
 "label.lb.protocol.tcp":"TCP",
+"label.lb.protocol.tcp.proxy":"TCP-proxy",
 "label.lb.protocol.udp":"UDP",
 "label.ldap.configuration":"LDAP Configuration",
 "label.ldap.group.name":"LDAP Group",
diff --git a/ui/scripts/network.js b/ui/scripts/network.js
index c1101cd..24a6c7d 100644
--- a/ui/scripts/network.js
+++ b/ui/scripts/network.js
@@ -3393,6 +3393,10 @@
                                                             name: 'tcp',
                                                             description: 
_l('label.lb.protocol.tcp')
                                                         }, {
+                                                            id: 'tcp-proxy',
+                                                            name: 'tcp-proxy',
+                                                            description: 
_l('label.lb.protocol.tcp.proxy')
+                                                        }, {
                                                             id: 'udp',
                                                             name: 'udp',
                                                             description: 
_l('label.lb.protocol.udp')

Reply via email to