Query Library: Add highlightQuery to QueryLibraryContext (#108617)

* add hightlightedQuery to QueryLibraryContext

* revert go changes
This commit is contained in:
Alexa Vargas
2025-07-31 14:52:12 +02:00
committed by GitHub
parent 454fae1786
commit 9d2cb8ddf1
@@ -24,7 +24,11 @@ export type QueryLibraryContextType = {
openDrawer: (
datasourceFilters: string[],
onSelectQuery: OnSelectQueryType,
options?: { isReplacingQuery?: boolean; context?: string }
options?: {
isReplacingQuery?: boolean;
context?: string;
highlightQuery?: string;
}
) => void;
closeDrawer: () => void;
isDrawerOpen: boolean;