From d5cc6a68591ae8d49a19626dcce4ad9986ad9a0b Mon Sep 17 00:00:00 2001 From: Joker_ <1465267+JokerQyou@users.noreply.github.com> Date: Fri, 2 Aug 2024 00:07:12 +0800 Subject: [PATCH] Fix network I/O chart not rendering. Close #200. --- src/web/components/status.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/web/components/status.html b/src/web/components/status.html index 0e0d19b..601042e 100644 --- a/src/web/components/status.html +++ b/src/web/components/status.html @@ -698,8 +698,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(); }