[WEB-2885] fix: retain issue description when creating an issue copy (#6243)
This commit is contained in:
parent
3c8c657ee0
commit
e6bf57aa18
1 changed files with 3 additions and 2 deletions
|
|
@ -92,7 +92,7 @@ export const CreateUpdateIssueModalBase: React.FC<IssuesModalProps> = observer((
|
|||
|
||||
useEffect(() => {
|
||||
// fetching issue details
|
||||
if (isOpen) fetchIssueDetail(data?.id);
|
||||
if (isOpen) fetchIssueDetail(data?.id ?? data?.sourceIssueId);
|
||||
|
||||
// if modal is closed, reset active project to null
|
||||
// and return to avoid activeProjectId being set to some other project
|
||||
|
|
@ -115,7 +115,8 @@ export const CreateUpdateIssueModalBase: React.FC<IssuesModalProps> = observer((
|
|||
|
||||
// clearing up the description state when we leave the component
|
||||
return () => setDescription(undefined);
|
||||
}, [data, projectId, isOpen, activeProjectId]);
|
||||
// eslint-disable-next-line react-hooks/exhaustive-deps
|
||||
}, [data?.project_id, data?.id, data?.sourceIssueId, projectId, isOpen, activeProjectId]);
|
||||
|
||||
const addIssueToCycle = async (issue: TIssue, cycleId: string) => {
|
||||
if (!workspaceSlug || !issue.project_id) return;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue