From 8d36119332f28694c20f00a1e6faa6dc2991b7f6 Mon Sep 17 00:00:00 2001 From: Revertron Date: Sat, 18 Mar 2023 18:15:04 +0100 Subject: [PATCH] Small UI fix. --- src/webview/scripts.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/webview/scripts.js b/src/webview/scripts.js index 399b1d6..59c5dfb 100644 --- a/src/webview/scripts.js +++ b/src/webview/scripts.js @@ -51,7 +51,7 @@ function refreshRecordsList() { data = value.priority + " " + value.host; } else if (value.type == "CNAME" || value.type == "NS") { data = value.host; - } else if (value.type == "TXT") { + } else if (value.type == "TXT" || value.type == "TLSA") { data = value.data; } else if (value.type == "SRV") { data = value.priority + " " + value.weight + " " + value.port + " " + value.host;