mirror of
https://github.com/nocodb/nocodb.git
synced 2026-04-25 03:25:45 +00:00
fix the batching logic
This commit is contained in:
@@ -269,7 +269,7 @@ async function createDemoTable({
|
||||
}
|
||||
|
||||
const BATCH_SIZE = 100;
|
||||
for (let i = 0; i < rowAttributes.length; i += BATCH_SIZE) {
|
||||
for (let i = 0; i < rowAttributes.length; i++) {
|
||||
await api.dbTableRow.bulkCreate(
|
||||
'noco',
|
||||
context.base.id,
|
||||
|
||||
Reference in New Issue
Block a user