From 87197455f800510e64d1edd9e7f5699d7d916454 Mon Sep 17 00:00:00 2001 From: Manabu Mccloskey Date: Mon, 26 Jun 2023 17:25:09 -0700 Subject: [PATCH] fix file name --- plugins/argo-workflows/src/api/ArgoWorkflows.ts | 2 +- plugins/argo-workflows/src/api/{indext.ts => index.ts} | 0 .../src/components/WorkflowOverview/WorkflowOverview.tsx | 2 +- plugins/argo-workflows/src/plugin.ts | 2 +- 4 files changed, 3 insertions(+), 3 deletions(-) rename plugins/argo-workflows/src/api/{indext.ts => index.ts} (100%) diff --git a/plugins/argo-workflows/src/api/ArgoWorkflows.ts b/plugins/argo-workflows/src/api/ArgoWorkflows.ts index 709d4d1..53dee99 100644 --- a/plugins/argo-workflows/src/api/ArgoWorkflows.ts +++ b/plugins/argo-workflows/src/api/ArgoWorkflows.ts @@ -1,7 +1,7 @@ import {ConfigApi, DiscoveryApi, IdentityApi} from "@backstage/core-plugin-api"; import {KubernetesApi} from "@backstage/plugin-kubernetes"; import {IoArgoprojWorkflowV1alpha1WorkflowList} from "./generated"; -import {ArgoWorkflowsApi} from "./indext"; +import {ArgoWorkflowsApi} from "./index"; const API_VERSION = 'argoproj.io/v1alpha1' const WORKFLOW_PLURAL = 'workflows' diff --git a/plugins/argo-workflows/src/api/indext.ts b/plugins/argo-workflows/src/api/index.ts similarity index 100% rename from plugins/argo-workflows/src/api/indext.ts rename to plugins/argo-workflows/src/api/index.ts diff --git a/plugins/argo-workflows/src/components/WorkflowOverview/WorkflowOverview.tsx b/plugins/argo-workflows/src/components/WorkflowOverview/WorkflowOverview.tsx index f67b998..d77b01a 100644 --- a/plugins/argo-workflows/src/components/WorkflowOverview/WorkflowOverview.tsx +++ b/plugins/argo-workflows/src/components/WorkflowOverview/WorkflowOverview.tsx @@ -1,5 +1,5 @@ import {configApiRef, useApi} from "@backstage/core-plugin-api"; -import {argoWorkflowsApiRef} from "../../api/indext"; +import {argoWorkflowsApiRef} from "../../api"; import useAsync from "react-use/lib/useAsync"; import {Link, Progress, Table, TableColumn} from '@backstage/core-components' import React from "react"; diff --git a/plugins/argo-workflows/src/plugin.ts b/plugins/argo-workflows/src/plugin.ts index 2d66f6e..a58931e 100644 --- a/plugins/argo-workflows/src/plugin.ts +++ b/plugins/argo-workflows/src/plugin.ts @@ -7,7 +7,7 @@ import { } from '@backstage/core-plugin-api'; import { rootRouteRef } from './routes'; -import {ArgoWorkflows, argoWorkflowsApiRef} from "./api/indext"; +import {ArgoWorkflows, argoWorkflowsApiRef} from "./api"; import {kubernetesApiRef} from "@backstage/plugin-kubernetes";