From fed5916907621d3c4bc4ea858399cbddea971fcc Mon Sep 17 00:00:00 2001 From: Prateek Shourya Date: Wed, 3 Apr 2024 18:01:11 +0530 Subject: [PATCH] [WEB-848] fix: issue with parent child relation not being removed from update issue modal. (#4103) --- web/components/issues/issue-modal/form.tsx | 58 ++++++++++++---------- 1 file changed, 32 insertions(+), 26 deletions(-) diff --git a/web/components/issues/issue-modal/form.tsx b/web/components/issues/issue-modal/form.tsx index 6112a27fe..b581522e6 100644 --- a/web/components/issues/issue-modal/form.tsx +++ b/web/components/issues/issue-modal/form.tsx @@ -327,32 +327,38 @@ export const IssueFormRoot: FC = observer((props) => { {watch("parent_id") && selectedParentIssue && ( -
-
- - - {selectedParentIssue.project__identifier}-{selectedParentIssue.sequence_id} - - {selectedParentIssue.name.substring(0, 50)} - -
-
+ ( +
+
+ + + {selectedParentIssue.project__identifier}-{selectedParentIssue.sequence_id} + + {selectedParentIssue.name.substring(0, 50)} + +
+
+ )} + /> )}