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

@@ -562,7 +562,9 @@ class Cell {
(element as HTMLInputElement).checked = this.value;
(element as HTMLInputElement).type = "checkbox";
(element as HTMLInputElement).className = "bulk hideBulk";
(element as HTMLInputElement).setAttribute("onclick", "javascript: selectChannelRange(this, event)")
(element as HTMLInputElement).addEventListener("click", function(event) {
scheduleChannelRangeSelection((element as HTMLInputElement), (event as MouseEvent))
})
break
case "BULK_HEAD":