mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-02-25 18:55:31 -06:00
Fixed an issue where select2 hover is inconsistent for the SSL field in create server dialog. Fixes #5469
This commit is contained in:
committed by
Akshay Joshi
parent
d61b8eb1b3
commit
5fe7813f9f
@@ -821,7 +821,11 @@ define('pgadmin.node.server', [
|
||||
mode: ['properties', 'edit', 'create'], readonly: 'isConnected',
|
||||
group: gettext('Connection'),
|
||||
},{
|
||||
id: 'sslmode', label: gettext('SSL mode'), type: 'options', group: gettext('SSL'),
|
||||
id: 'sslmode', label: gettext('SSL mode'), control: 'select2', group: gettext('SSL'),
|
||||
select2: {
|
||||
allowClear: false,
|
||||
minimumResultsForSearch: Infinity,
|
||||
},
|
||||
mode: ['properties', 'edit', 'create'], disabled: 'isConnected',
|
||||
'options': [
|
||||
{label: gettext('Allow'), value: 'allow'},
|
||||
|
||||
Reference in New Issue
Block a user