Fixed an issue where clicking on Select All button, not selecting all the options in pgAgent job scheduler. Fixes #5496

This commit is contained in:
Yogesh Jain 2020-05-19 13:54:21 +05:30 committed by Akshay Joshi
parent 4aaacfd5b0
commit 7b1cac6914
2 changed files with 4 additions and 0 deletions

View File

@ -45,5 +45,6 @@ Bug fixes
| `Issue #5473 <https://redmine.postgresql.org/issues/5473>`_ - Fixed post-login redirect location when running in server mode under a non-default root.
| `Issue #5480 <https://redmine.postgresql.org/issues/5480>`_ - Fixed an issue where the background job creation fails if there is only a version-specific python binary available in PATH.
| `Issue #5487 <https://redmine.postgresql.org/issues/5487>`_ - Fixed an issue where if LDAP_SEARCH_BASE_DN is not set then, the value for LDAP_BASE_DN will be considered.
| `Issue #5496 <https://redmine.postgresql.org/issues/5496>`_ - Fixed an issue where clicking on Select All button, not selecting all the options in pgAgent job scheduler.
| `Issue #5503 <https://redmine.postgresql.org/issues/5503>`_ - Clarify and correct the docs on enabling the pl/debugger plugin on the server.
| `Issue #5510 <https://redmine.postgresql.org/issues/5510>`_ - Fixed Unicode decode error 'utf-8' codec can't decode byte.

View File

@ -393,6 +393,7 @@ define('pgadmin.node.pga_schedule', [
allowClear: true,
placeholder: gettext('Select the month days...'),
width: 'style',
showOnScroll: false,
dropdownAdapter: $.fn.select2.amd.require(
'select2/selectAllAdapter'
),
@ -427,6 +428,7 @@ define('pgadmin.node.pga_schedule', [
allowClear: true,
placeholder: gettext('Select the hours...'),
width: 'style',
showOnScroll: false,
dropdownAdapter: $.fn.select2.amd.require(
'select2/selectAllAdapter'
),
@ -442,6 +444,7 @@ define('pgadmin.node.pga_schedule', [
allowClear: true,
placeholder: gettext('Select the minutes...'),
width: 'style',
showOnScroll: false,
dropdownAdapter: $.fn.select2.amd.require(
'select2/selectAllAdapter'
),