diff --git a/public/app/features/search/service/bluge.ts b/public/app/features/search/service/bluge.ts index cf37a55479e..3a40974880e 100644 --- a/public/app/features/search/service/bluge.ts +++ b/public/app/features/search/service/bluge.ts @@ -128,7 +128,18 @@ async function doSearchQuery(query: SearchQuery): Promise { const frame = ( await lastValueFrom( ds.query({ - targets: [{ ...target, refId: 'Page', facet: undefined, from, limit: Math.max(limit, nextPageSizes) }], + targets: [ + { + ...target, + search: { + ...(target?.search ?? {}), + from, + limit: Math.max(limit, nextPageSizes), + }, + refId: 'Page', + facet: undefined, + }, + ], } as any) ) ).data?.[0] as DataFrame;