mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Ensure that pgadmin should be able to connect to the server which has password more than 1000 characters. Fixes #5592
This commit is contained in:
committed by
Akshay Joshi
parent
8ab358ccec
commit
38cd3327f3
@@ -796,7 +796,7 @@ define('pgadmin.node.server', [
|
||||
id: 'username', label: gettext('Username'), type: 'text', group: gettext('Connection'),
|
||||
mode: ['properties', 'edit', 'create'], readonly: 'isConnected',
|
||||
},{
|
||||
id: 'password', label: gettext('Password'), type: 'password',
|
||||
id: 'password', label: gettext('Password'), type: 'password', maxlength: '2000',
|
||||
group: gettext('Connection'), control: 'input', mode: ['create'], deps: ['connect_now'],
|
||||
visible: function(model) {
|
||||
return model.get('connect_now') && model.isNew();
|
||||
|
||||
Reference in New Issue
Block a user