From 59d4fe66f4971cd00b6f1e8a3f1010637fff9460 Mon Sep 17 00:00:00 2001 From: arpitnath Date: Tue, 9 Apr 2024 15:20:37 +0530 Subject: [PATCH] fixes: create hints and references from queries if entries are less than 2000 --- frontend/src/_stores/utils.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/frontend/src/_stores/utils.js b/frontend/src/_stores/utils.js index 2f2adfd85e..0f13001789 100644 --- a/frontend/src/_stores/utils.js +++ b/frontend/src/_stores/utils.js @@ -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);