mirror of
https://github.com/hex248/sprint.git
synced 2026-02-08 02:33:01 +00:00
fixed issue type not being communicated during creation
This commit is contained in:
@@ -125,8 +125,8 @@ export function IssueForm({ trigger }: { trigger?: React.ReactNode }) {
|
||||
description,
|
||||
sprintId: sprintId === "unassigned" ? null : Number(sprintId),
|
||||
assigneeIds: assigneeIds.filter((id) => id !== "unassigned").map((id) => Number(id)),
|
||||
status: status.trim() === "" ? undefined : status,
|
||||
type: type.trim() === "" ? undefined : type,
|
||||
status: status.trim(),
|
||||
type: type.trim(),
|
||||
});
|
||||
setOpen(false);
|
||||
reset();
|
||||
|
||||
Reference in New Issue
Block a user