mirror of https://github.com/apache/cloudstack.git
ui: fix LB protocol bug (#3438)
Fixes #3252 This fixes labels for missing LB protocol(s). Signed-off-by: Rohit Yadav <rohit.yadav@shapeblue.com>
This commit is contained in:
parent
541d280e3b
commit
c160e7532a
|
|
@ -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",
|
||||
|
|
|
|||
|
|
@ -3392,6 +3392,10 @@
|
|||
id: 'tcp',
|
||||
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',
|
||||
|
|
|
|||
Loading…
Reference in New Issue