Remove maximum length on the password field in the server dialog. Fixes #5802

This commit is contained in:
Aditya Toshniwal  2020-09-17 20:21:00 +05:30 committed by Akshay Joshi
parent bf183bdcff
commit a25e808e06
2 changed files with 3 additions and 2 deletions

View File

@ -17,4 +17,5 @@ Housekeeping
Bug fixes
*********
| `Issue #5417 <https://redmine.postgresql.org/issues/5417>`_ - Fixed and improve API test cases for the schema diff tool.
| `Issue #5417 <https://redmine.postgresql.org/issues/5417>`_ - Fixed and improve API test cases for the schema diff tool.
| `Issue #5802 <https://redmine.postgresql.org/issues/5802>`_ - Remove maximum length on the password field in the server dialog.

View File

@ -872,7 +872,7 @@ define('pgadmin.node.server', [
},
}),
},{
id: 'password', label: gettext('Password'), type: 'password', maxlength: '2000',
id: 'password', label: gettext('Password'), type: 'password', maxlength: null,
group: gettext('Connection'), control: 'input', mode: ['create'], deps: ['connect_now'],
visible: function(model) {
return model.get('connect_now') && model.isNew();