feat: implement 'not_started' task status with validation and UI updates
This commit is contained in:
@@ -135,9 +135,10 @@ export default function ProjectTasksList() {
|
||||
groups.completed.push(taskWithStatus);
|
||||
} else if (task.status === "in_progress") {
|
||||
groups.in_progress.push(taskWithStatus);
|
||||
} else {
|
||||
} else if (task.status === "pending") {
|
||||
groups.pending.push(taskWithStatus);
|
||||
}
|
||||
// not_started tasks are not displayed in the UI
|
||||
});
|
||||
|
||||
// Sort pending tasks by date_added (newest first)
|
||||
|
||||
Reference in New Issue
Block a user