diff --git a/frontend/src/utils/hide-columns/hide-columns.js b/frontend/src/utils/hide-columns/hide-columns.js index c8599e17e..766277170 100644 --- a/frontend/src/utils/hide-columns/hide-columns.js +++ b/frontend/src/utils/hide-columns/hide-columns.js @@ -226,7 +226,7 @@ export class HideColumns { isEmptyColumn(columnIndex) { for (let row of this._element.getElementsByTagName('TR')) { if (row.children.length <= columnIndex) { - throw new Error('Invalid column index for table'); + return; } const cell = row.children[columnIndex];