Skip to content
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions web/ce/components/cycles/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from "./active-cycle";
export * from "./analytics-sidebar";
export * from "./quick-actions";
1 change: 0 additions & 1 deletion web/core/components/cycles/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,6 @@ export * from "./cycles-view";
export * from "./delete-modal";
export * from "./form";
export * from "./modal";
export * from "./quick-actions";
export * from "./transfer-issues-modal";
export * from "./transfer-issues";
export * from "./cycles-view-header";
Expand Down
5 changes: 3 additions & 2 deletions web/core/components/cycles/list/cycle-list-item-action.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,6 @@ import {
setToast,
} from "@plane/ui";
// components
import { CycleQuickActions } from "@/components/cycles";
import { DateRangeDropdown } from "@/components/dropdowns";
import { ButtonAvatars } from "@/components/dropdowns/member/avatar";
// constants
Expand All @@ -32,6 +31,8 @@ import { generateQueryParams } from "@/helpers/router.helper";
import { useCycle, useEventTracker, useMember, useUserPermissions } from "@/hooks/store";
import { useAppRouter } from "@/hooks/use-app-router";
import { usePlatformOS } from "@/hooks/use-platform-os";
// plane web components
import { CycleQuickActions } from "@/plane-web/components/cycles";
// plane web constants
import { EUserPermissions, EUserPermissionsLevel } from "@/plane-web/constants/user-permissions";
// services
Expand Down Expand Up @@ -150,7 +151,7 @@ export const CycleListItemAction: FC<Props> = observer((props) => {
try {
const res = await cycleService.cycleDateCheck(workspaceSlug as string, projectId as string, payload);
return res.status;
} catch (err) {
} catch {
return false;
}
};
Expand Down
3 changes: 2 additions & 1 deletion web/core/components/cycles/list/cycles-list-item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,8 @@ import { generateQueryParams } from "@/helpers/router.helper";
import { useCycle } from "@/hooks/store";
import { useAppRouter } from "@/hooks/use-app-router";
import { usePlatformOS } from "@/hooks/use-platform-os";
import { CycleQuickActions } from "../quick-actions";
// plane web components
import { CycleQuickActions } from "@/plane-web/components/cycles/";

type TCyclesListItem = {
cycleId: string;
Expand Down
1 change: 1 addition & 0 deletions web/ee/components/cycles/index.ts
Original file line number Diff line number Diff line change
@@ -1,2 +1,3 @@
export * from "./active-cycle";
export * from "./analytics-sidebar";
export * from "ce/components/cycles/quick-actions";
Loading