Remove the max length of 255 from password exec command in server configuration dialog. #6877

This commit is contained in:
Anil Sahoo
2023-11-06 11:55:29 +05:30
committed by GitHub
parent 96fccd28a9
commit 695c008245
3 changed files with 41 additions and 2 deletions

View File

@@ -335,7 +335,7 @@ export default class ServerSchema extends BaseUISchema {
},
{
id: 'passexec_cmd', label: gettext('Password exec command'), type: 'text',
group: gettext('Advanced'),
group: gettext('Advanced'), controlProps: {maxLength: null},
mode: ['properties', 'edit', 'create'],
disabled: pgAdmin.server_mode == 'True',
},

View File

@@ -33,7 +33,7 @@ import config
#
##########################################################################
SCHEMA_VERSION = 37
SCHEMA_VERSION = 38
##########################################################################
#