From 8ecb389c96022b978f17d1e3d204f2f4451e408a Mon Sep 17 00:00:00 2001 From: Juan Cabanas Date: Tue, 23 Sep 2025 14:33:37 -0300 Subject: [PATCH] SavedQueries: Fix closeDrawer type (#111403) --- .../app/features/explore/QueryLibrary/QueryLibraryContext.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/explore/QueryLibrary/QueryLibraryContext.tsx b/public/app/features/explore/QueryLibrary/QueryLibraryContext.tsx index 6f05b78689e..db9e131b771 100644 --- a/public/app/features/explore/QueryLibrary/QueryLibraryContext.tsx +++ b/public/app/features/explore/QueryLibrary/QueryLibraryContext.tsx @@ -30,7 +30,7 @@ export type QueryLibraryContextType = { * @param newQuery New query to be added to the library. */ openDrawer: (options: QueryLibraryDrawerOptions) => void; - closeDrawer: () => void; + closeDrawer: (isSelectingQuery?: boolean, isEditingQuery?: boolean) => void; isDrawerOpen: boolean; onSave?: () => void;