feat(webui): the circuit override #2335

Merged
Sainan merged 2 commits from webui-circuit into main 2025-06-27 20:28:45 -07:00
Showing only changes of commit 5cc3f21d67 - Show all commits

View File

@ -1897,7 +1897,11 @@ function doSaveConfigStringArray(id) {
url: "/custom/setConfig?" + window.authz + "&wsid=" + wsid,
contentType: "application/json",
data: JSON.stringify({
[id]: document.getElementById(id).getAttribute("data-tags-value").split(", ").filter(x => x)
[id]: document
.getElementById(id)
.getAttribute("data-tags-value")
.split(", ")
.filter(x => x)
})
});
}