diff --git a/scripts/pi-hole/js/footer.js b/scripts/pi-hole/js/footer.js index d14c296f..9b2e56ff 100644 --- a/scripts/pi-hole/js/footer.js +++ b/scripts/pi-hole/js/footer.js @@ -281,7 +281,8 @@ function updateFtlInfo() { .text(intl.format(database.domains.allowed + database.regex.allowed)) .attr( "title", - intl.format(database.domains.allowed) + + "Allowed: " + + intl.format(database.domains.allowed) + " exact domains, " + intl.format(database.regex.allowed) + " regex filters" @@ -290,7 +291,8 @@ function updateFtlInfo() { .text(intl.format(database.domains.denied + database.regex.denied)) .attr( "title", - intl.format(database.domains.denied) + + "Denied: " + + intl.format(database.domains.denied) + " exact domains, " + intl.format(database.regex.denied) + " regex filters"