mirror of
https://github.com/ToolJet/ToolJet
synced 2026-05-24 09:28:31 +00:00
fixes: create hints and references from queries if entries are less than 2000
This commit is contained in:
parent
df92d81c78
commit
59d4fe66f4
1 changed files with 1 additions and 1 deletions
|
|
@ -402,7 +402,7 @@ export function createReferencesLookup(refState, forQueryParams = false, initalL
|
|||
if (_type === 'Array') {
|
||||
map.set(newPath, { type: _type });
|
||||
|
||||
if (path.startsWith('queries') && key === 'data' && value.length > 2) {
|
||||
if (path.startsWith('queries') && key === 'data' && value.length > 2000) {
|
||||
// do nothing
|
||||
} else {
|
||||
buildMap(value, newPath);
|
||||
|
|
|
|||
Loading…
Reference in a new issue