fix: draft issue type update outside click (#5902)

This commit is contained in:
Anmol Singh Bhatia 2024-10-23 20:11:28 +05:30 committed by GitHub
parent 5afa686a21
commit 56bb6e1f48
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -204,7 +204,7 @@ export const CreateUpdateIssueModalBase: React.FC<IssuesModalProps> = observer((
issueTypeId: response.type_id, issueTypeId: response.type_id,
projectId: response.project_id, projectId: response.project_id,
workspaceSlug: workspaceSlug.toString(), workspaceSlug: workspaceSlug.toString(),
isDraft: isDraft, isDraft: is_draft_issue,
}); });
} }