From 0245c936d99cb953edf0b48072b4cb8c8d26b5b3 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Christian=20K=C3=B6nig?= Date: Sat, 1 Oct 2022 09:48:54 +0200 Subject: [PATCH] Set parsing:false for dashboard graphs MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Christian König --- scripts/pi-hole/js/index.js | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/scripts/pi-hole/js/index.js b/scripts/pi-hole/js/index.js index b01488b8..e5d1f1ec 100644 --- a/scripts/pi-hole/js/index.js +++ b/scripts/pi-hole/js/index.js @@ -890,7 +890,7 @@ $(function () { type: utils.getGraphType(), data: { labels: [], - datasets: [{ data: [] }], + datasets: [{ data: [], parsing: false }], }, options: { responsive: true, @@ -998,7 +998,7 @@ $(function () { type: utils.getGraphType(), data: { labels: [], - datasets: [{ data: [] }], + datasets: [{ data: [], parsing: false }], }, options: { responsive: true, @@ -1136,7 +1136,7 @@ $(function () { type: "doughnut", data: { labels: [], - datasets: [{ data: [] }], + datasets: [{ data: [], parsing: false }], }, options: { responsive: true, @@ -1180,7 +1180,7 @@ $(function () { type: "doughnut", data: { labels: [], - datasets: [{ data: [] }], + datasets: [{ data: [], parsing: false }], }, options: { responsive: true,