Merge branch 'QA_5_2'

Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
Maurício Meneghini Fauth 2023-11-15 18:34:31 -03:00
commit 4da47ed5ed
No known key found for this signature in database
GPG Key ID: 6A16FD38AFC89CC8
2 changed files with 3 additions and 0 deletions

View File

@ -74,6 +74,7 @@ phpMyAdmin - ChangeLog
- issue #17347 Fixed JS errors when changing index settings on create table
- issue Fix BETWEEN search does not validate input because of spaces
- issue Fix JS number validation does not validate when the input is empty or emptied
- issue #18561 Fix issue when adding System Monitor charts
5.2.1 (2023-02-07)
- issue #17522 Fix case where the routes cache file is invalid

View File

@ -595,6 +595,7 @@ AJAX.registerOnload('server/status/monitor.js', function () {
saveMonitor(); // Save settings
$('#closeModalButton').off('click');
$('#addChartButton').off('click');
});
$('#closeModalButton').on('click', function () {
@ -602,6 +603,7 @@ AJAX.registerOnload('server/status/monitor.js', function () {
$('span#clearSeriesLink').hide();
$('#seriesPreview').html('');
$('#closeModalButton').off('click');
$('#addChartButton').off('click');
});
var $presetList = $('#addChartModal').find('select[name="presetCharts"]');