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
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
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";