From cc6958e127c16572f9d8e848cc9861cc03bdf9ef Mon Sep 17 00:00:00 2001 From: Herbert Wolverson Date: Thu, 1 Aug 2024 12:00:47 -0500 Subject: [PATCH] Fix the links to circuits on the ASN Explorer --- src/rust/lqosd/src/node_manager/js_build/src/asn_explorer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/rust/lqosd/src/node_manager/js_build/src/asn_explorer.js b/src/rust/lqosd/src/node_manager/js_build/src/asn_explorer.js index 94506c0f..c19fcfa1 100644 --- a/src/rust/lqosd/src/node_manager/js_build/src/asn_explorer.js +++ b/src/rust/lqosd/src/node_manager/js_build/src/asn_explorer.js @@ -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";