fix: allow null due_date in task schema for PATCH updates
This commit is contained in:
@@ -82,7 +82,7 @@ export function TaskDetailPanel({
|
||||
status,
|
||||
priority,
|
||||
domain,
|
||||
due_date: dueDate || null
|
||||
due_date: dueDate || undefined
|
||||
})
|
||||
});
|
||||
if (!response.ok) throw new Error('Unable to save task');
|
||||
|
||||
Reference in New Issue
Block a user