fix: description is not getting saved

This commit is contained in:
dakshesh14 2023-11-03 14:51:52 +05:30
parent 0c4e197940
commit faefb61d2f

View File

@ -130,6 +130,7 @@ export const IssueForm: FC<IssueFormProps> = observer((props) => {
const payload: Partial<IIssue> = {
name: getValues("name"),
description: getValues("description"),
description_html: getValues("description_html"),
state: getValues("state"),
priority: getValues("priority"),
assignees: getValues("assignees"),