Skip to content

Commit e6ae49e

Browse files
committed
Merge branch 'QA_5_2'
Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
2 parents 775108a + 66050a4 commit e6ae49e

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

ChangeLog

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ phpMyAdmin - ChangeLog
1313
- issue #17517 Fix Database Server panel not getting hidden by ShowServerInfo configuration directive
1414
- issue #17271 Fix database names not showing on Processes tab
1515
- issue #17424 Fix export limit size calculation
16+
- issue #17366 Fix refresh rate popup on Monitor page
1617

1718
5.2.0 (2022-05-10)
1819
- issue #16521 Upgrade Bootstrap to version 5

js/src/server/status/monitor.js

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -101,9 +101,7 @@ AJAX.registerOnload('server/status/monitor.js', function () {
101101
var $cnt = $(this);
102102
var pos = $cnt.offset();
103103
// Hide if the mouseclick is outside the popupcontent
104-
if (event.pageX < pos.left ||
105-
event.pageY < pos.top ||
106-
event.pageX > pos.left + $cnt.outerWidth() ||
104+
if (event.pageX > pos.left + $cnt.outerWidth() ||
107105
event.pageY > pos.top + $cnt.outerHeight()
108106
) {
109107
$cnt.hide().removeClass('openedPopup');

0 commit comments

Comments
 (0)