- Added experimental fix to memory issue (not sure if this is related but it seems after uncommenting these the memory issue no longer show up on Firefox and Edge)
This commit is contained in:
Toby Chui
2025-03-25 07:40:39 +08:00
parent b71437058f
commit 8504ff16cb
2 changed files with 3 additions and 3 deletions

View File

@ -713,8 +713,8 @@
}
function updateChart() {
//networkStatisticChart.data.datasets[0].data = rxValues;
//networkStatisticChart.data.datasets[1].data = txValues;
networkStatisticChart.data.datasets[0].data = rxValues;
networkStatisticChart.data.datasets[1].data = txValues;
if (networkStatisticChart != undefined){
networkStatisticChart.update();
}