Skip to content

Commit

Permalink
Small UI fix.
Browse files Browse the repository at this point in the history
  • Loading branch information
Revertron committed Mar 18, 2023
1 parent 829ee75 commit 8d36119
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/webview/scripts.js
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down

0 comments on commit 8d36119

Please sign in to comment.