Fixes #1147 - 65536 is valid port for PostgreSQL.
parent
f4cb7d8f9c
commit
70cca42d61
|
|
@ -619,7 +619,7 @@ function($, _, S, pgAdmin, pgBrowser, alertify) {
|
|||
mode: ['properties', 'edit', 'create'], disabled: 'isConnected'
|
||||
},{
|
||||
id: 'port', label:'{{ _('Port') }}', type: 'int', group: "{{ 'Connection' }}",
|
||||
mode: ['properties', 'edit', 'create'], disabled: 'isConnected', min: 1024, max: 65534
|
||||
mode: ['properties', 'edit', 'create'], disabled: 'isConnected', min: 1024, max: 65535
|
||||
},{
|
||||
id: 'db', label:'{{ _('Maintenance Database') }}', type: 'text', group: "{{ 'Connection' }}",
|
||||
mode: ['properties', 'edit', 'create'], disabled: 'isConnected'
|
||||
|
|
|
|||
Loading…
Reference in New Issue