mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
feat: Upgrade TypeScript to v5 (no-changelog) (#5755)
This commit is contained in:
committed by
GitHub
parent
b69129bd78
commit
87e979c19a
@@ -111,7 +111,8 @@ export async function orbitApiRequestAllItems(
|
||||
}
|
||||
|
||||
query.page++;
|
||||
if (query.limit && returnData.length >= query.limit) {
|
||||
const limit = query.limit as number | undefined;
|
||||
if (limit && returnData.length >= limit) {
|
||||
return returnData;
|
||||
}
|
||||
} while (responseData.data.length !== 0);
|
||||
|
||||
Reference in New Issue
Block a user