From a813c248d4d71950fa2adbad7d6e9bc29f72db68 Mon Sep 17 00:00:00 2001 From: Andrija Panic <45762285+andrijapanicsb@users.noreply.github.com> Date: Mon, 20 Jan 2020 16:27:46 +0100 Subject: [PATCH] set TCP as default protocol in lb list (#3822) --- ui/scripts/network.js | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/ui/scripts/network.js b/ui/scripts/network.js index f93fc5578a4..ff4c9b4d8f6 100644 --- a/ui/scripts/network.js +++ b/ui/scripts/network.js @@ -3441,21 +3441,21 @@ isEditable: true, select: function(args) { var data = [{ - id: 'ssl', - name: 'ssl', - description: _l('label.lb.protocol.ssl') - }, { id: 'tcp', name: 'tcp', description: _l('label.lb.protocol.tcp') + }, { + id: 'udp', + name: 'udp', + description: _l('label.lb.protocol.udp') }, { id: 'tcp-proxy', name: 'tcp-proxy', description: _l('label.lb.protocol.tcp.proxy') }, { - id: 'udp', - name: 'udp', - description: _l('label.lb.protocol.udp') + id: 'ssl', + name: 'ssl', + description: _l('label.lb.protocol.ssl') }]; if (typeof args.context != 'undefined') { var lbProtocols = getLBProtocols(args.context.networks[0]);