forked from github/plane
[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 || "",
|
||||
module_ids: formData?.module_ids || [],
|
||||
estimate_point: formData?.estimate_point || undefined,
|
||||
parent_id: formData?.parent_id || "",
|
||||
parent_id: formData?.parent_id || null,
|
||||
};
|
||||
setFormSubmitting(true);
|
||||
|
||||
|
@ -177,7 +177,7 @@ export const InboxIssueProperties: FC<TInboxIssueProperties> = observer((props)
|
||||
setSelectedParentIssue(issue);
|
||||
}}
|
||||
projectId={projectId}
|
||||
issueId={data?.id}
|
||||
issueId={undefined}
|
||||
/>
|
||||
</>
|
||||
)}
|
||||
|
Loading…
Reference in New Issue
Block a user