diff --git a/client/pages/ProjectBoard.tsx b/client/pages/ProjectBoard.tsx index 9426d916..658cd006 100644 --- a/client/pages/ProjectBoard.tsx +++ b/client/pages/ProjectBoard.tsx @@ -95,11 +95,13 @@ export default function ProjectBoard() { projectId, title.trim(), description.trim() || null, - null, - null, + assigneeId || null, + dueDate || null, ); setTitle(""); setDescription(""); + setAssigneeId(""); + setDueDate(""); await load(); } finally { setCreating(false);