Skip to content

Commit

Permalink
Fix the links to circuits on the ASN Explorer
Browse files Browse the repository at this point in the history
  • Loading branch information
thebracket committed Aug 1, 2024
1 parent 8157a60 commit cc6958e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -304,7 +304,7 @@ function renderAsn(asn, data) {
clientCol.classList.add("col-1", "text-secondary", "small");
if (row.circuit_id !== "") {
let clientLink = document.createElement("a");
clientLink.href = "/circuit/" + encodeURI(row.circuit_id);
clientLink.href = "/circuit.html?id=" + encodeURI(row.circuit_id);
clientLink.innerText = row.circuit_name;
clientLink.classList.add("redactable");
clientLink.style.textOverflow = "ellipsis";
Expand Down

0 comments on commit cc6958e

Please sign in to comment.