From 772b5c571900f2c5a3caa6330c4b7f1564a52d62 Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Wed, 22 Oct 2025 21:11:08 +0530 Subject: [PATCH] [WEB-5201] chore: work item and inbox modal refactor (#7990) * chore: work item and inbbox modal refactor * chore: code refactor * chore: code refactor * chore: code refactor --- apps/web/core/components/issues/issue-modal/form.tsx | 1 + packages/types/src/de-dupe.ts | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/apps/web/core/components/issues/issue-modal/form.tsx b/apps/web/core/components/issues/issue-modal/form.tsx index 91c567daa..2d8e81f24 100644 --- a/apps/web/core/components/issues/issue-modal/form.tsx +++ b/apps/web/core/components/issues/issue-modal/form.tsx @@ -319,6 +319,7 @@ export const IssueFormRoot: FC = observer((props) => { { name: watch("name"), description_html: getTextContent(watch("description_html")), + issueId: data?.id, } ); diff --git a/packages/types/src/de-dupe.ts b/packages/types/src/de-dupe.ts index 539a151a7..e6105a0c0 100644 --- a/packages/types/src/de-dupe.ts +++ b/packages/types/src/de-dupe.ts @@ -3,7 +3,7 @@ import { TIssuePriorities } from "./issues"; export type TDuplicateIssuePayload = { title: string; workspace_id: string; - issue_id?: string; + issue_id?: string | null; project_id?: string; description_stripped?: string; };