Browse Source

Explore: Query rows are now reset when changing data sources (#17865)

Except when those data sources are compatible, via query import.
Closes #17861
kay delaney 6 years ago
parent
commit
b06ad02a74
1 changed files with 1 additions and 1 deletions
  1. 1 1
      public/app/features/explore/state/reducers.ts

+ 1 - 1
public/app/features/explore/state/reducers.ts

@@ -264,7 +264,7 @@ export const itemReducer = reducerFactory<ExploreItemState>({} as ExploreItemSta
         loadingState: LoadingState.NotStarted,
         loadingState: LoadingState.NotStarted,
         StartPage,
         StartPage,
         showingStartPage: Boolean(StartPage),
         showingStartPage: Boolean(StartPage),
-        queryKeys: getQueryKeys(state.queries, datasourceInstance),
+        queryKeys: [],
         supportedModes,
         supportedModes,
         mode,
         mode,
       };
       };