Fix todo due date also counting completed items

This commit is contained in:
2026-03-04 14:43:01 +01:00
parent 8ff955415c
commit 4ee1d01e38
4 changed files with 21 additions and 7 deletions
+2
View File
@@ -133,6 +133,8 @@ const cardClasses = (item: PipelineItem): string => {
if (item.dueDate && isSoon(item.dueDate) ||
item.nextTodoDueDate && isSoon(item.nextTodoDueDate)
) return "border-l-4 border-warning"
return ""
}
const badgeVariant = (date: string | null): "default" | "secondary" | "destructive" | "warning" | "outline" | null | undefined => {