mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Allow connections to servers with port numbers < 1024 which may be seen in container environments. Fixes #3307
This commit is contained in:
committed by
Dave Page
parent
28126a0a0d
commit
a4ed9d6976
@@ -676,7 +676,7 @@ define('pgadmin.node.server', [
|
||||
mode: ['properties', 'edit', 'create'], disabled: 'isConnected',
|
||||
},{
|
||||
id: 'port', label: gettext('Port'), type: 'int', group: gettext('Connection'),
|
||||
mode: ['properties', 'edit', 'create'], disabled: 'isConnected', min: 1024, max: 65535,
|
||||
mode: ['properties', 'edit', 'create'], disabled: 'isConnected', min: 1, max: 65535,
|
||||
},{
|
||||
id: 'db', label: gettext('Maintenance database'), type: 'text', group: gettext('Connection'),
|
||||
mode: ['properties', 'edit', 'create'], disabled: 'isConnected',
|
||||
|
||||
Reference in New Issue
Block a user