diff --git a/plugins/argo-workflows/src/components/Overview/Overview.tsx b/plugins/argo-workflows/src/components/Overview/Overview.tsx index 6bc6e44..2a05410 100644 --- a/plugins/argo-workflows/src/components/Overview/Overview.tsx +++ b/plugins/argo-workflows/src/components/Overview/Overview.tsx @@ -2,12 +2,12 @@ import React from 'react'; import {Header, HeaderLabel, Page, Content, ContentHeader, SupportButton} from "@backstage/core-components"; import {Grid} from "@material-ui/core"; -import {VersionComponent} from "../Version/Version"; +import {WorkflowOverviewComponent} from "../WorkflowOverview/WorkflowOverview"; export const OverviewComponent = () => ( -
+
@@ -17,7 +17,7 @@ export const OverviewComponent = () => ( - + diff --git a/plugins/argo-workflows/src/components/Version/Version.tsx b/plugins/argo-workflows/src/components/WorkflowOverview/WorkflowOverview.tsx similarity index 97% rename from plugins/argo-workflows/src/components/Version/Version.tsx rename to plugins/argo-workflows/src/components/WorkflowOverview/WorkflowOverview.tsx index 512e51d..2c3392e 100644 --- a/plugins/argo-workflows/src/components/Version/Version.tsx +++ b/plugins/argo-workflows/src/components/WorkflowOverview/WorkflowOverview.tsx @@ -36,7 +36,7 @@ const columns: TableColumn[] = [ {title: "EndTime", field: "finishedAt", type: "datetime"} ] -export const VersionComponent = () => { +export const WorkflowOverviewComponent = () => { const {entity} = useEntity() const apiClient = useApi(argoWorkflowsApiRef)