update UI js
All checks were successful
continuous-integration/drone/push Build is passing

This commit is contained in:
2026-02-11 13:09:41 +11:00
parent 57b6be74e2
commit 60af423335
4 changed files with 34 additions and 7 deletions

View File

@@ -467,7 +467,9 @@ var Cell = /** @class */ (function () {
element.checked = this.value;
element.type = "checkbox";
element.className = "bulk hideBulk";
element.setAttribute("onclick", "javascript: selectChannelRange(this, event)");
element.addEventListener("click", function (event) {
scheduleChannelRangeSelection(element, event);
});
break;
case "BULK_HEAD":
element = document.createElement("INPUT");