Просмотр исходного кода

Move MetricsSection.tsx to correct folder (#3407)

Feroze Mohideen 2 лет назад
Родитель
Сommit
dd6f14f989

+ 1 - 1
dashboard/src/main/home/app-dashboard/expanded-app/ExpandedApp.tsx

@@ -38,7 +38,7 @@ import { EnvVariablesTab } from "./env-vars/EnvVariablesTab";
 import GHABanner from "./GHABanner";
 import LogSection from "./logs/LogSection";
 import ActivityFeed from "./activity-feed/ActivityFeed";
-import MetricsSection from "./MetricsSection";
+import MetricsSection from "./metrics/MetricsSection";
 import StatusSectionFC from "./status/StatusSection";
 import ExpandedJob from "./expanded-job/ExpandedJob";
 import _ from "lodash";

+ 2 - 2
dashboard/src/main/home/app-dashboard/expanded-app/MetricsSection.tsx → dashboard/src/main/home/app-dashboard/expanded-app/metrics/MetricsSection.tsx

@@ -7,8 +7,8 @@ import { ChartTypeWithExtendedConfig } from "shared/types";
 
 import TabSelector from "components/TabSelector";
 import SelectRow from "components/form-components/SelectRow";
-import MetricsChart from "./metrics/MetricsChart";
-import { getServiceNameFromControllerName } from "./metrics/utils";
+import MetricsChart from "./MetricsChart";
+import { getServiceNameFromControllerName } from "./utils";
 type PropsType = {
   currentChart: ChartTypeWithExtendedConfig;
   appName: string;