feat: add project, work item, and workspace level modals for enhanced user interaction

This commit is contained in:
Atul Tameshwari
2026-06-16 12:22:55 +05:30
parent c9561a72f9
commit 9804225e69
4 changed files with 4 additions and 3 deletions

View File

@@ -54,6 +54,7 @@ export const WorkItemLevelModals = observer(function WorkItemLevelModals(props:
const { fetchSubIssues: fetchSubWorkItems } = useIssueDetail();
const { fetchSubIssues: fetchEpicSubWorkItems } = useIssueDetail(EIssueServiceType.EPICS);
// oxlint-disable-next-line no-shadow
const handleDeleteIssue = async (workspaceSlug: string, projectId: string, issueId: string) => {
try {
const isEpic = workItemDetails?.is_epic;

View File

@@ -13,9 +13,9 @@ import { usePowerK } from "@/hooks/store/use-power-k";
import { useUser } from "@/hooks/store/user";
import { useAppRouter } from "@/hooks/use-app-router";
// plane web imports
import { ProjectLevelModals } from "@/plane-web/components/command-palette/modals/project-level";
import { WorkItemLevelModals } from "@/plane-web/components/command-palette/modals/work-item-level";
import { WorkspaceLevelModals } from "@/plane-web/components/command-palette/modals/workspace-level";
import { ProjectLevelModals } from "@/components/modals/project-level";
import { WorkItemLevelModals } from "@/components/modals/work-item-level";
import { WorkspaceLevelModals } from "@/components/modals/workspace-level";
// local imports
import { useProjectsAppPowerKCommands } from "./config/commands";
import type { TPowerKCommandConfig, TPowerKContext } from "./core/types";