From 372ba83534e0fd91e1c25d7c3c27a3ac1f68f62c Mon Sep 17 00:00:00 2001 From: Marcos Vinicius Date: Thu, 3 Nov 2022 10:22:07 -0300 Subject: [PATCH] reduce the number of requests in folder section (#55876) --- public/app/features/search/page/components/FolderSection.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/search/page/components/FolderSection.tsx b/public/app/features/search/page/components/FolderSection.tsx index 082c820bfe8..7ec926c4709 100644 --- a/public/app/features/search/page/components/FolderSection.tsx +++ b/public/app/features/search/page/components/FolderSection.tsx @@ -82,7 +82,7 @@ export const FolderSection: FC = ({ folderTitle, })); return v; - }, [sectionExpanded, section, tags]); + }, [sectionExpanded, tags]); const onSectionExpand = () => { setSectionExpanded(!sectionExpanded);