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 8965b0b commit 3482904Copy full SHA for 3482904
ui/mod/src/checkBoxes.ts
@@ -5,7 +5,7 @@ export const shiftClickCheckboxRange = (table: HTMLTableElement): OnSelect => {
5
6
const checkIntermediateBoxes = (first: HTMLInputElement, last: HTMLInputElement) => {
7
let started = false;
8
- for (const input of table.querySelectorAll('tbody input:not(:disabled)')) {
+ for (const input of table.querySelectorAll('tbody tr:not(.none) input:not(:disabled)')) {
9
if (first == input || last == input) {
10
if (started) return;
11
started = true;
0 commit comments