Merge branch 'QA_5_2'

Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
William Desportes 2022-11-03 21:36:37 +01:00
commit 56801fa996
No known key found for this signature in database
GPG Key ID: 90A0EF1B8251A889
2 changed files with 3 additions and 1 deletions

View File

@ -59,6 +59,7 @@ phpMyAdmin - ChangeLog
- issue #17553 Fix Metro theme login form with
- issue #16042 Exported gzip file of database has first ~73 kB uncompressed and rest is gzip compressed in Firefox
- issue #17705 Fix inline SQL query edit FK checkbox preventing submit buttons from working
- issue #17777 Fix Uncaught TypeError: Cannot read properties of null (reading 'inline') on datepickers when re-opened
5.2.0 (2022-05-10)
- issue #16521 Upgrade Bootstrap to version 5

View File

@ -759,7 +759,8 @@ window.makeGrid = function (t, enableResize, enableReorder, enableVisib, enableG
if ($dp.length > 0) {
// eslint-disable-next-line no-underscore-dangle
$(document).on('mousedown', $.datepicker._checkExternalClick);
$dp.datepicker('destroy');
$dp.datepicker('refresh');
// change the cursor in edit box back to normal
// (the cursor become a hand pointer when we add datepicker)
$(g.cEdit).find('.edit_box').css('cursor', 'inherit');