diff --git a/db_queries.php b/db_queries.php index 57f1df53..64b5c1c5 100644 --- a/db_queries.php +++ b/db_queries.php @@ -79,7 +79,7 @@
-

---

+

---

Queries Blocked

@@ -92,7 +92,7 @@
-

---

+

---

Queries Blocked (Wildcards)

@@ -118,7 +118,7 @@
-

---

+

---

Queries Blocked

diff --git a/scripts/pi-hole/js/db_queries.js b/scripts/pi-hole/js/db_queries.js index 2e484a49..e5c4ea4d 100644 --- a/scripts/pi-hole/js/db_queries.js +++ b/scripts/pi-hole/js/db_queries.js @@ -165,8 +165,8 @@ var reloadCallback = function () { var formatter = new Intl.NumberFormat(); $("h3#dns_queries").text(formatter.format(statistics[0])); - $("h3#ads_blocked_exact").text(formatter.format(statistics[2])); - $("h3#ads_wildcard_blocked").text(formatter.format(statistics[3])); + $("h3#queries_blocked_exact").text(formatter.format(statistics[2])); + $("h3#queries_wildcard_blocked").text(formatter.format(statistics[3])); var percent = 0; if (statistics[2] + statistics[3] > 0) { @@ -174,7 +174,7 @@ var reloadCallback = function () { } var percentage = formatter.format(Math.round(percent * 10) / 10); - $("h3#ads_percentage_today").text(percentage + " %"); + $("h3#queries_percentage_today").text(percentage + " %"); }; function refreshTableData() {