diff --git a/src/def.go b/src/def.go index b2eae7f..0719405 100644 --- a/src/def.go +++ b/src/def.go @@ -43,7 +43,7 @@ const ( /* Build Constants */ SYSTEM_NAME = "Zoraxy" SYSTEM_VERSION = "3.2.0" - DEVELOPMENT_BUILD = false /* Development: Set to false to use embedded web fs */ + DEVELOPMENT_BUILD = true /* Development: Set to false to use embedded web fs */ /* System Constants */ TMP_FOLDER = "./tmp" diff --git a/src/web/components/status.html b/src/web/components/status.html index 4f6b019..a0571ba 100644 --- a/src/web/components/status.html +++ b/src/web/components/status.html @@ -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(); }