clicking around checkbox (in the list) works too

This commit is contained in:
Klaas van Schelven
2024-02-20 19:03:47 +01:00
parent 325a662283
commit 96558156ac
2 changed files with 12 additions and 1 deletions

6
static/js/issue_list.js Normal file
View File

@@ -0,0 +1,6 @@
"use strict";
function toggleContainedCheckbox(td) {
const checkbox = td.querySelector("[type=\"checkbox\"]");
checkbox.checked = !checkbox.checked;
}