Fix issue when adding System Monitor charts
- Fixes #18561 - Closes #18739 Signed-off-by: Maurício Meneghini Fauth <mauricio@fauth.dev>
This commit is contained in:
parent
53e9a2a64b
commit
f26e7d415b
@ -64,6 +64,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
|
||||
|
||||
@ -570,6 +570,7 @@ AJAX.registerOnload('server/status/monitor.js', function () {
|
||||
saveMonitor(); // Save settings
|
||||
|
||||
$('#closeModalButton').off('click');
|
||||
$('#addChartButton').off('click');
|
||||
});
|
||||
|
||||
$('#closeModalButton').on('click', function () {
|
||||
@ -577,6 +578,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"]');
|
||||
|
||||
Loading…
Reference in New Issue
Block a user