We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 15a3ce3 commit 0b12ae4Copy full SHA for 0b12ae4
src/main/web/playoff/scoregenbrackets.js
@@ -8,7 +8,8 @@
8
9
function checkSomethingToPrint() {
10
let somethingToPrint = false;
11
- for (const checkbox of document.querySelectorAll('input[type=checkbox]')) {
+ // htmlunit doesn't handle const in a for loop, so skip it here - https://github.com/HtmlUnit/htmlunit/issues/449
12
+ for (checkbox of document.querySelectorAll('input[type=checkbox]')) {
13
if (checkbox.checked) {
14
somethingToPrint = true;
15
}
0 commit comments