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

@@ -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'
),