watchtools second fix

This commit is contained in:
HF 2022-09-18 13:05:43 +02:00
parent c409e16a64
commit 18f46d2530

View File

@ -532,9 +532,10 @@ export function combineTables(a, b) {
for (let u = 0; u < sTable.rows.length; u += 1) {
newRows[u].push(sTable.rows[u][colInd]);
}
}
for (let u = 0; u < sTable.rows.length; u += 1) {
newRows[u].push(null);
} else {
for (let u = 0; u < sTable.rows.length; u += 1) {
newRows[u].push(null);
}
}
}
bTable.rows = bTable.rows.concat(newRows);