From c9ed2c80b29284f53d7652f0b5835eafc2bd4bbd Mon Sep 17 00:00:00 2001 From: Juan Cabanas Date: Tue, 15 Aug 2023 14:47:56 -0300 Subject: [PATCH] PublicDashboards: Query order bug fixed (#73293) --- .../features/dashboard/services/PublicDashboardDataSource.ts | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/public/app/features/dashboard/services/PublicDashboardDataSource.ts b/public/app/features/dashboard/services/PublicDashboardDataSource.ts index 62cb08c8bf6..4b5cc9fc0bf 100644 --- a/public/app/features/dashboard/services/PublicDashboardDataSource.ts +++ b/public/app/features/dashboard/services/PublicDashboardDataSource.ts @@ -90,8 +90,6 @@ export class PublicDashboardDataSource extends DataSourceApi { - return of(toDataQueryResponse(raw, queries)); + return of(toDataQueryResponse(raw, request.targets)); }), catchError((err) => { return of(toDataQueryResponse(err));