fix: cycles import issues for ee (#5732)

This commit is contained in:
Akshita Goyal
2024-10-01 19:52:52 +05:30
committed by GitHub
parent 4940dc2193
commit 5474ab326d
4 changed files with 5 additions and 1 deletions

View File

@@ -18,7 +18,7 @@ import { getDate } from "@/helpers/date-time.helper";
// hooks
import { useIssues, useCycle, useProjectEstimates } from "@/hooks/store";
// plane web constants
import { SidebarBaseChart } from "@/plane-web/components/cycles/analytics-sidebar/sidebar-chart";
import { SidebarBaseChart } from "@/plane-web/components/cycles/analytics-sidebar";
import { EEstimateSystem } from "@/plane-web/constants/estimates";
type TCycleAnalyticsProgress = {

View File

@@ -0,0 +1 @@
export * from "ce/components/cycles/active-cycle";

View File

@@ -0,0 +1 @@
export * from "ce/components/cycles/analytics-sidebar";

View File

@@ -0,0 +1,2 @@
export * from "./active-cycle";
export * from "./analytics-sidebar";