From b06ad02a749e0c9167dc2a8fe46cb1fd5995175c Mon Sep 17 00:00:00 2001 From: kay delaney <45561153+kaydelaney@users.noreply.github.com> Date: Wed, 3 Jul 2019 13:49:47 +0100 Subject: [PATCH] Explore: Query rows are now reset when changing data sources (#17865) Except when those data sources are compatible, via query import. Closes #17861 --- public/app/features/explore/state/reducers.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/public/app/features/explore/state/reducers.ts b/public/app/features/explore/state/reducers.ts index dcbd19bc1cf..56fb29b0273 100644 --- a/public/app/features/explore/state/reducers.ts +++ b/public/app/features/explore/state/reducers.ts @@ -264,7 +264,7 @@ export const itemReducer = reducerFactory({} as ExploreItemSta loadingState: LoadingState.NotStarted, StartPage, showingStartPage: Boolean(StartPage), - queryKeys: getQueryKeys(state.queries, datasourceInstance), + queryKeys: [], supportedModes, mode, };