mirror of
https://github.com/pgadmin-org/pgadmin4.git
synced 2025-01-11 08:32:20 -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:
parent
d61b8eb1b3
commit
5fe7813f9f
@ -19,4 +19,5 @@ Bug fixes
|
|||||||
|
|
||||||
| `Issue #3694 <https://redmine.postgresql.org/issues/3694>`_ - Gracefully informed the user that the database is already connected when they click on "Connect Database...".
|
| `Issue #3694 <https://redmine.postgresql.org/issues/3694>`_ - Gracefully informed the user that the database is already connected when they click on "Connect Database...".
|
||||||
| `Issue #4279 <https://redmine.postgresql.org/issues/4279>`_ - Ensure that file browse "home" button should point to $HOME rather than /.
|
| `Issue #4279 <https://redmine.postgresql.org/issues/4279>`_ - Ensure that file browse "home" button should point to $HOME rather than /.
|
||||||
| `Issue #5422 <https://redmine.postgresql.org/issues/5422>`_ - Ensure that the dependencies tab shows correct information for Synonyms.
|
| `Issue #5422 <https://redmine.postgresql.org/issues/5422>`_ - Ensure that the dependencies tab shows correct information for Synonyms.
|
||||||
|
| `Issue #5469 <https://redmine.postgresql.org/issues/5469>`_ - Fixed an issue where select2 hover is inconsistent for the SSL field in create server dialog.
|
@ -821,7 +821,11 @@ define('pgadmin.node.server', [
|
|||||||
mode: ['properties', 'edit', 'create'], readonly: 'isConnected',
|
mode: ['properties', 'edit', 'create'], readonly: 'isConnected',
|
||||||
group: gettext('Connection'),
|
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',
|
mode: ['properties', 'edit', 'create'], disabled: 'isConnected',
|
||||||
'options': [
|
'options': [
|
||||||
{label: gettext('Allow'), value: 'allow'},
|
{label: gettext('Allow'), value: 'allow'},
|
||||||
|
Loading…
Reference in New Issue
Block a user