From 25aaebf3609bd0c00e95ffb43a5b64b6bf19270e Mon Sep 17 00:00:00 2001 From: DL6ER Date: Wed, 25 Sep 2024 12:16:13 +0200 Subject: [PATCH] Increase accessability Signed-off-by: DL6ER --- scripts/pi-hole/js/footer.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) 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"