fix filter change

This commit is contained in:
Peter Maquiran
2023-04-17 17:23:26 +01:00
parent bd13431c6a
commit b4bc286557
5 changed files with 29 additions and 39 deletions
+1 -1
View File
@@ -70,7 +70,7 @@ export class TaskService {
}
overdueTask(isoDateString:string) {
return (new Date()).getTime() < (new Date(isoDateString)).getTime()
return (new Date()).getTime() > (new Date(isoDateString)).getTime()
}
lessThen24Hours(isoDateString:string) {