fixed bug with different column count

This commit is contained in:
Dennis Eichhorn 2022-12-10 22:16:56 +01:00
parent ff8cfbb6a2
commit 9fe0b0ca59

View File

@ -406,6 +406,10 @@ export class Table
const status = checkbox.checked;
for (let i = 0; i < rowLength; ++i) {
if (typeof rows[i].cells[columnId] === 'undefined') {
break;
}
const box = rows[i].cells[columnId].querySelector('input[type=checkbox]');
if (box !== null) {