This commit is contained in:
Jan Prochazka
2022-01-20 15:22:50 +01:00
parent 5eed81cf9f
commit 0f56efea2d

View File

@@ -543,7 +543,7 @@
function forEachSelected(op: Function) {
for (const tbl of _.values(tableRefs)) {
const table = tbl as any;
if (!table.isSelected()) continue;
if (!table?.isSelected()) continue;
op(table);
}
}