From 8e764004f0ed21a67f5e82290af74b3fe36ec34e Mon Sep 17 00:00:00 2001 From: Anmol Singh Bhatia <121005188+anmolsinghbhatia@users.noreply.github.com> Date: Wed, 17 Apr 2024 14:53:24 +0530 Subject: [PATCH] fix: draft issue parent select query params (#4218) --- web/components/issues/issue-modal/form.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/components/issues/issue-modal/form.tsx b/web/components/issues/issue-modal/form.tsx index fd576231f..7897e105b 100644 --- a/web/components/issues/issue-modal/form.tsx +++ b/web/components/issues/issue-modal/form.tsx @@ -720,7 +720,7 @@ export const IssueFormRoot: FC = observer((props) => { setSelectedParentIssue(issue); }} projectId={projectId} - issueId={data?.id} + issueId={isDraft ? undefined : data?.id} /> )} />