diff --git a/scripts/pi-hole/js/index.js b/scripts/pi-hole/js/index.js index 366e4773..ca060818 100644 --- a/scripts/pi-hole/js/index.js +++ b/scripts/pi-hole/js/index.js @@ -64,11 +64,13 @@ function updateSummaryData(runOnce) { { // FTL was previously offline $("#temperature").text(" "); - updateQueriesOverTime(); - updateForwardedOverTime(); - updateQueryTypes(); - updateTopClientsChart(); - updateTopLists(); + window.setTimeout(function() { + updateQueriesOverTime(); + updateForwardedOverTime(); + updateQueryTypes(); + updateTopClientsChart(); + updateTopLists(); + }, 500); } }