Skip to content

Commit 2381e48

Browse files
committed
Merge branch 'QA_5_2'
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2 parents 1e7c337 + b731011 commit 2381e48

2 files changed

Lines changed: 3 additions & 0 deletions

File tree

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,7 @@ phpMyAdmin - ChangeLog
5959
- issue #18403 Fix Uncaught SyntaxError: JSON.parse on makegrid conditions
6060
- issue #17528 Fix double escaping of database group names in the navigation tree
6161
- issue #18473 Fix the NULL not applied after clearing nullable field
62+
- issue #18454 Fix date field calendar display when changing NULL state
6263

6364
5.2.1 (2023-02-07)
6465
- issue #17522 Fix case where the routes cache file is invalid

js/src/makegrid.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -929,6 +929,8 @@ const makeGrid = function (t, enableResize = undefined, enableReorder = undefine
929929
if ($editArea.find('select').length > 0) {
930930
$editArea.find('select').val('');
931931
}
932+
} else if ($td.is('.datefield')) {
933+
$('.ui-datepicker-trigger').trigger('click');
932934
} else {
933935
$editArea.find('textarea').val('');
934936
}

0 commit comments

Comments
 (0)