diff --git a/UI/Component/Table.js b/UI/Component/Table.js index 05232eb..074d158 100755 --- a/UI/Component/Table.js +++ b/UI/Component/Table.js @@ -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) {