Mute the packet capture button on the circuits page

This commit is contained in:
Herbert Wolverson 2024-07-24 09:11:01 -05:00
parent deae5527f7
commit 8ea687679a

View File

@ -638,7 +638,7 @@ function wireupAnalysis(circuits) {
clearInterval(interval);
btn.disabled = false;
btn.innerHTML = "<i class='fa fa-download'></i> Download Packet Capture for " + address;
btn.classList.remove("btn-primary");
btn.classList.remove("btn-secondary");
btn.classList.add("btn-success");
btn.onclick = () => {
let url = "/local-api/pcapDump/" + sessionId;