diff --git a/public/app/features/explore/Explore.tsx b/public/app/features/explore/Explore.tsx index 6e52079dcf9..c16ae5d8b01 100644 --- a/public/app/features/explore/Explore.tsx +++ b/public/app/features/explore/Explore.tsx @@ -168,9 +168,10 @@ export class Explore extends React.PureComponent { } else { datasource = await datasourceSrv.get(); } - if (!datasource.meta.explore) { - datasource = await datasourceSrv.get(datasources[0].name); - } + // temporarily remove this + // if (!datasource.meta.explore) { + // datasource = await datasourceSrv.get(datasources[0].name); + // } await this.setDatasource(datasource); } else { this.setState({ datasourceMissing: true });