Adding bulk import type.

This commit is contained in:
mike12345567 2024-04-26 15:53:16 +01:00
parent 1c1f9c950d
commit f670b75e13
1 changed files with 1 additions and 0 deletions

View File

@ -128,6 +128,7 @@ export async function importToRows(
for (let i = 0; i < data.length; i++) {
let row = data[i]
row._id = generateRowID(table._id!)
row.type = "row"
row.tableId = table._id
// We use a reference to table here and update it after input processing,