Skip to content

Commit

Permalink
fix: allow "this one goes to 11"
Browse files Browse the repository at this point in the history
  • Loading branch information
Robbert committed Dec 12, 2024
1 parent 1661594 commit 28e00bc
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,7 @@ const getAllTasks = (issue: CleanComponent, projects: MappedProjects): ExtendedC
}) || [];

const checked = issue.tasks.filter((issue) => issue.checked);
const done = checked.length === project?.tasks.length;
const done = checked.length >= (project?.tasks.length || 0);

return {
...issue,
Expand Down

0 comments on commit 28e00bc

Please sign in to comment.