mirror of
https://github.com/LibreQoE/LibreQoS.git
synced 2024-11-22 08:16:25 -06:00
Forgot to make some dashboard links to customers redactable.
This commit is contained in:
parent
0235b2e657
commit
03bb955e28
@ -62,6 +62,7 @@ export class Top10FlowsBytes extends BaseDashlet {
|
|||||||
let link = document.createElement("a");
|
let link = document.createElement("a");
|
||||||
link.href = "circuit.html?id=" + encodeURI(r.circuit_id);
|
link.href = "circuit.html?id=" + encodeURI(r.circuit_id);
|
||||||
link.innerText = r.circuit_name;
|
link.innerText = r.circuit_name;
|
||||||
|
link.classList.add("redactable");
|
||||||
circuit.appendChild(link);
|
circuit.appendChild(link);
|
||||||
row.appendChild(circuit);
|
row.appendChild(circuit);
|
||||||
} else {
|
} else {
|
||||||
|
@ -62,6 +62,7 @@ export class Top10FlowsRate extends BaseDashlet {
|
|||||||
let link = document.createElement("a");
|
let link = document.createElement("a");
|
||||||
link.href = "circuit.html?id=" + encodeURI(r.circuit_id);
|
link.href = "circuit.html?id=" + encodeURI(r.circuit_id);
|
||||||
link.innerText = r.circuit_name;
|
link.innerText = r.circuit_name;
|
||||||
|
link.classList.add("redactable");
|
||||||
circuit.appendChild(link);
|
circuit.appendChild(link);
|
||||||
row.appendChild(circuit);
|
row.appendChild(circuit);
|
||||||
} else {
|
} else {
|
||||||
|
Loading…
Reference in New Issue
Block a user