mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue with empty locale provider while editing collation. #5611
This commit is contained in:
parent
3fa48f26b8
commit
4ae9132b59
@ -87,7 +87,7 @@ export default class CollationSchema extends BaseUISchema {
|
||||
},
|
||||
{
|
||||
id: 'provider', label: gettext('Locale Provider'),
|
||||
editable: false, type: 'select',mode: ['create', 'edit'], group: gettext('Definition'),
|
||||
editable: false, type: 'select',mode: ['create'], group: gettext('Definition'),
|
||||
readonly: function (state) { return !obj.isNew(state); },
|
||||
options: [{
|
||||
label: gettext('icu'),
|
||||
@ -111,7 +111,7 @@ export default class CollationSchema extends BaseUISchema {
|
||||
},
|
||||
{
|
||||
id: 'provider', label: gettext('Locale Provider'),
|
||||
type: 'text',mode: ['properties'], group: gettext('Definition'),
|
||||
type: 'text',mode: ['properties', 'edit'], group: gettext('Definition'),
|
||||
readonly: true,
|
||||
min_version: 110000,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user