mirror of
https://github.com/nocodb/nocodb.git
synced 2026-02-01 23:48:33 +00:00
fix: PR requested
This commit is contained in:
@@ -178,7 +178,7 @@ const nocoExecuteSingle = async (
|
||||
const res1 = await res[key];
|
||||
if (Array.isArray(res1)) {
|
||||
// Handle arrays of results by executing nocoExecute on each element sequentially
|
||||
dataTree[key] = [];
|
||||
dataTree[key] = dataTree[key] || [];
|
||||
for (let i = 0; i < res1.length; i++) {
|
||||
const r = res1[i];
|
||||
dataTree[key][i] = dataTree[key][i] || {};
|
||||
|
||||
Reference in New Issue
Block a user