From 75dc9ade3a09c5c477c7cd8f7cbd55feb6c116cb Mon Sep 17 00:00:00 2001 From: Prateek Shourya Date: Wed, 3 Jul 2024 19:48:02 +0530 Subject: [PATCH] [WEB-1843] chore: active cycles file restructuring. (#559) --- web/ee/components/active-cycles/index.ts | 1 + web/ee/components/active-cycles/root.tsx | 5 ++++- .../active-cycles}/workspace-active-cycles-list.tsx | 0 3 files changed, 5 insertions(+), 1 deletion(-) rename web/{core/components/workspace => ee/components/active-cycles}/workspace-active-cycles-list.tsx (100%) diff --git a/web/ee/components/active-cycles/index.ts b/web/ee/components/active-cycles/index.ts index 13735b854a..3151dd10dd 100644 --- a/web/ee/components/active-cycles/index.ts +++ b/web/ee/components/active-cycles/index.ts @@ -1,5 +1,6 @@ export * from "./root"; export * from "./workspace-active-cycles-upgrade"; +export * from "./workspace-active-cycles-list"; export * from "./header"; export * from "./progress"; export * from "./project-title"; diff --git a/web/ee/components/active-cycles/root.tsx b/web/ee/components/active-cycles/root.tsx index a7810d113f..b4b0bcdc72 100644 --- a/web/ee/components/active-cycles/root.tsx +++ b/web/ee/components/active-cycles/root.tsx @@ -1 +1,4 @@ -export * from "ce/components/active-cycles/root"; +// plane web components +import { WorkspaceActiveCyclesList } from "@/plane-web/components/active-cycles"; + +export const WorkspaceActiveCyclesRoot = () => ; diff --git a/web/core/components/workspace/workspace-active-cycles-list.tsx b/web/ee/components/active-cycles/workspace-active-cycles-list.tsx similarity index 100% rename from web/core/components/workspace/workspace-active-cycles-list.tsx rename to web/ee/components/active-cycles/workspace-active-cycles-list.tsx