From 691ded09dc7b0f54e5c5509e791c51ae628ebff9 Mon Sep 17 00:00:00 2001 From: Alberto Casado Torres Date: Tue, 28 Jan 2025 13:12:07 +0100 Subject: [PATCH] increased limit to 500 (#7612) --- app/shared/config.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/shared/config.ts b/app/shared/config.ts index 2440a99366..b69d106599 100644 --- a/app/shared/config.ts +++ b/app/shared/config.ts @@ -1,4 +1,4 @@ -const PRELOAD_OPTIONS_LIMIT = 200; +const PRELOAD_OPTIONS_LIMIT = 500; const PRELOAD_OPTIONS_SEARCH = 2000; const preloadOptionsLimit = () => PRELOAD_OPTIONS_LIMIT;