Clarify wording of DNSSEC Unknown status

Previously, unknown DNSSEC status was marked with a question mark. FTL
loads queries from the database and sets the DNSSEC status to unknown,
because that information is not stored in the database:
https://github.com/pi-hole/FTL/pull/461

Signed-off-by: Mcat12 <newtoncat12@yahoo.com>
This commit is contained in:
Mcat12
2019-01-26 13:11:08 -08:00
parent 12d2f2dd08
commit f19a538e7f

View File

@@ -170,7 +170,7 @@ $(document).ready(function() {
dnssec_status = "<br><span style=\"color:red\">ABANDONED</span>";
break;
case "5":
dnssec_status = "<br><span style=\"color:red\">?</span>";
dnssec_status = "<br><span style=\"color:red\">UNKNOWN</span>";
break;
default: // No DNSSEC
dnssec_status = "";