Pull-request: #20217 Fixes: #19330 Signed-off-by: William Desportes <williamdes@wdes.fr>
This commit is contained in:
commit
0055ec0054
@ -1491,6 +1491,11 @@ AJAX.registerOnload('server/status/monitor.js', function () {
|
||||
}
|
||||
|
||||
value -= oldChartData[key][j][0].value;
|
||||
|
||||
// Show original value instead of negative value when database server is restarted
|
||||
if (value < 0) {
|
||||
value = parseFloat(chartData[key][j][0].value);
|
||||
}
|
||||
}
|
||||
|
||||
if (elem.nodes[j].valueDivisor) {
|
||||
|
||||
Loading…
Reference in New Issue
Block a user