diff --git a/public/app/features/explore/Explore.tsx b/public/app/features/explore/Explore.tsx index 76044e38f97..9aa7bc1904b 100644 --- a/public/app/features/explore/Explore.tsx +++ b/public/app/features/explore/Explore.tsx @@ -50,8 +50,8 @@ import { LogsSamplePanel } from './Logs/LogsSamplePanel'; import { NoData } from './NoData'; import { NoDataSourceCallToAction } from './NoDataSourceCallToAction'; import { NodeGraphContainer } from './NodeGraph/NodeGraphContainer'; -import RawPrometheusContainer from './PrometheusQueryResults/RawPrometheusContainer'; import { QueryRows } from './QueryRows'; +import RawPrometheusContainer from './RawPrometheus/RawPrometheusContainer'; import { ResponseErrorContainer } from './ResponseErrorContainer'; import { SecondaryActions } from './SecondaryActions'; import TableContainer from './Table/TableContainer'; diff --git a/public/app/features/explore/PrometheusQueryResults/PrometheusQueryResultsContainer.test.tsx b/public/app/features/explore/RawPrometheus/PrometheusQueryResultsContainer.test.tsx similarity index 100% rename from public/app/features/explore/PrometheusQueryResults/PrometheusQueryResultsContainer.test.tsx rename to public/app/features/explore/RawPrometheus/PrometheusQueryResultsContainer.test.tsx diff --git a/public/app/features/explore/PrometheusQueryResults/PrometheusQueryResultsContainer.tsx b/public/app/features/explore/RawPrometheus/PrometheusQueryResultsContainer.tsx similarity index 100% rename from public/app/features/explore/PrometheusQueryResults/PrometheusQueryResultsContainer.tsx rename to public/app/features/explore/RawPrometheus/PrometheusQueryResultsContainer.tsx diff --git a/public/app/features/explore/PrometheusQueryResults/RawPrometheusContainer.tsx b/public/app/features/explore/RawPrometheus/RawPrometheusContainer.tsx similarity index 100% rename from public/app/features/explore/PrometheusQueryResults/RawPrometheusContainer.tsx rename to public/app/features/explore/RawPrometheus/RawPrometheusContainer.tsx diff --git a/public/app/features/explore/PrometheusQueryResults/RawPrometheusContainerPure.tsx b/public/app/features/explore/RawPrometheus/RawPrometheusContainerPure.tsx similarity index 100% rename from public/app/features/explore/PrometheusQueryResults/RawPrometheusContainerPure.tsx rename to public/app/features/explore/RawPrometheus/RawPrometheusContainerPure.tsx diff --git a/public/app/features/plugins/extensions/registry/setup.ts b/public/app/features/plugins/extensions/registry/setup.ts index efcce575eff..f877125a443 100644 --- a/public/app/features/plugins/extensions/registry/setup.ts +++ b/public/app/features/plugins/extensions/registry/setup.ts @@ -1,7 +1,7 @@ import { PluginExtensionExposedComponents } from '@grafana/data'; import CentralAlertHistorySceneExposedComponent from 'app/features/alerting/unified/components/rules/central-state-history/CentralAlertHistorySceneExposedComponent'; import { AddToDashboardFormExposedComponent } from 'app/features/dashboard-scene/addToDashboard/AddToDashboardFormExposedComponent'; -import { PrometheusQueryResultsContainer } from 'app/features/explore/PrometheusQueryResults/PrometheusQueryResultsContainer'; +import { PrometheusQueryResultsContainer } from 'app/features/explore/RawPrometheus/PrometheusQueryResultsContainer'; import { getCoreExtensionConfigurations } from '../getCoreExtensionConfigurations';