Fixed an issue where Datetimepicker control opens when clicking on the label.
Change the click event to 'click .input-group'. Fixes #4850pull/26/head
parent
03391a07e0
commit
687fe617cc
|
|
@ -11,6 +11,7 @@ notes for it.
|
|||
.. toctree::
|
||||
:maxdepth: 1
|
||||
|
||||
release_notes_4_15
|
||||
release_notes_4_14
|
||||
release_notes_4_13
|
||||
release_notes_4_12
|
||||
|
|
|
|||
|
|
@ -0,0 +1,20 @@
|
|||
************
|
||||
Version 4.15
|
||||
************
|
||||
|
||||
Release date: 2019-11-14
|
||||
|
||||
This release contains a number of bug fixes and new features since the release of pgAdmin4 4.14.
|
||||
|
||||
New features
|
||||
************
|
||||
|
||||
|
||||
Housekeeping
|
||||
************
|
||||
|
||||
|
||||
Bug fixes
|
||||
*********
|
||||
|
||||
| `Issue #4850 <https://redmine.postgresql.org/issues/4850>`_ - Fixed an issue where Datetimepicker control opens when clicking on the label.
|
||||
|
|
@ -2690,7 +2690,7 @@ define([
|
|||
'focus input': 'clearInvalid',
|
||||
'focusout input': 'closePicker',
|
||||
'change.datetimepicker': 'onChange',
|
||||
'click': 'togglePicker',
|
||||
'click .input-group': 'togglePicker',
|
||||
},
|
||||
togglePicker: function() {
|
||||
if (this.has_datepicker) {
|
||||
|
|
|
|||
Loading…
Reference in New Issue