Skip to content

Commit 56801fa

Browse files
committed
Merge branch 'QA_5_2'
Signed-off-by: William Desportes <williamdes@wdes.fr>
2 parents 3a7b77d + e99bfae commit 56801fa

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ phpMyAdmin - ChangeLog
5959
- issue #17553 Fix Metro theme login form with
6060
- issue #16042 Exported gzip file of database has first ~73 kB uncompressed and rest is gzip compressed in Firefox
6161
- issue #17705 Fix inline SQL query edit FK checkbox preventing submit buttons from working
62+
- issue #17777 Fix Uncaught TypeError: Cannot read properties of null (reading 'inline') on datepickers when re-opened
6263

6364
5.2.0 (2022-05-10)
6465
- issue #16521 Upgrade Bootstrap to version 5

js/src/makegrid.js

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -759,7 +759,8 @@ window.makeGrid = function (t, enableResize, enableReorder, enableVisib, enableG
759759
if ($dp.length > 0) {
760760
// eslint-disable-next-line no-underscore-dangle
761761
$(document).on('mousedown', $.datepicker._checkExternalClick);
762-
$dp.datepicker('destroy');
762+
$dp.datepicker('refresh');
763+
763764
// change the cursor in edit box back to normal
764765
// (the cursor become a hand pointer when we add datepicker)
765766
$(g.cEdit).find('.edit_box').css('cursor', 'inherit');

0 commit comments

Comments
 (0)