diff --git a/src/rust/lqos_node_manager/static/main.html b/src/rust/lqos_node_manager/static/main.html index 853caf87..cbc6301f 100644 --- a/src/rust/lqos_node_manager/static/main.html +++ b/src/rust/lqos_node_manager/static/main.html @@ -268,7 +268,7 @@ if (tt[i].circuit_id != "") { html += "" + redactText(tt[i].ip_address) + ""; } else { - html += "" + tt[i].ip_address + ""; + html += "" + redactText(tt[i].ip_address) + ""; } html += "" + scaleNumber(tt[i].bits_per_second[0]) + ""; html += "" + scaleNumber(tt[i].bits_per_second[1]) + ""; @@ -317,6 +317,12 @@ } function start() { + if (isRedacted()) { + console.log("Redacting"); + //css_getclass(".redact").style.filter = "blur(4px)"; + css_getclass(".redact").style.fontFamily = "klingon"; + } + colorReloadButton(); updateCurrentThroughput(); updateThroughputGraph();