mirror of
https://github.com/makeplane/plane
synced 2024-06-14 14:31:34 +00:00
[WEB-999] fix: inbox sentry error and accept modal fix (#4226)
* fix: inbox issue parent id sentry error * fix: inbox issue accept parent id fix
This commit is contained in:
parent
bf9049a7a2
commit
0c0bdd6969
@ -77,7 +77,7 @@ export const InboxIssueEditRoot: FC<TInboxIssueEditRoot> = observer((props) => {
|
|||||||
cycle_id: formData?.cycle_id || "",
|
cycle_id: formData?.cycle_id || "",
|
||||||
module_ids: formData?.module_ids || [],
|
module_ids: formData?.module_ids || [],
|
||||||
estimate_point: formData?.estimate_point || undefined,
|
estimate_point: formData?.estimate_point || undefined,
|
||||||
parent_id: formData?.parent_id || "",
|
parent_id: formData?.parent_id || null,
|
||||||
};
|
};
|
||||||
setFormSubmitting(true);
|
setFormSubmitting(true);
|
||||||
|
|
||||||
|
@ -177,7 +177,7 @@ export const InboxIssueProperties: FC<TInboxIssueProperties> = observer((props)
|
|||||||
setSelectedParentIssue(issue);
|
setSelectedParentIssue(issue);
|
||||||
}}
|
}}
|
||||||
projectId={projectId}
|
projectId={projectId}
|
||||||
issueId={data?.id}
|
issueId={undefined}
|
||||||
/>
|
/>
|
||||||
</>
|
</>
|
||||||
)}
|
)}
|
||||||
|
Loading…
Reference in New Issue
Block a user