From 92ffa82f89fab5b0c11e2396b4fdf85ea2e65aa3 Mon Sep 17 00:00:00 2001 From: Pavel Samokha Date: Sat, 13 Jan 2018 21:51:54 +0300 Subject: [PATCH] updated proxy auth preferences --- app/view/preferences/Preferences.js | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/app/view/preferences/Preferences.js b/app/view/preferences/Preferences.js index 8dfd3338..11556edf 100644 --- a/app/view/preferences/Preferences.js +++ b/app/view/preferences/Preferences.js @@ -276,19 +276,23 @@ Ext.define('Rambox.view.preferences.Preferences',{ ,name: 'proxyPort' ,value: config.proxyPort ,margin: '0 0 0 10' - },{ + } + ,{ xtype: 'textfield' ,fieldLabel: 'Login' ,name: 'proxyLogin' ,value: config.proxyLogin ,margin: '0 0 0 10' - },{ - xtype: 'textfield' - ,fieldLabel: 'Password' - ,name: 'proxyPassword' - ,value: config.proxyPassword - ,margin: '0 0 0 10' - } + ,emptyText: 'optional' + } + ,{ + xtype: 'textfield' + ,fieldLabel: 'Password' + ,name: 'proxyPassword' + ,value: config.proxyPassword + ,margin: '0 0 0 10' + ,emptyText: 'optional' + } ] } ]