From b8f53a8324efae9edfb9bcbb3d94be3b29ff69ac Mon Sep 17 00:00:00 2001 From: Johannes Millan Date: Sat, 3 May 2025 12:56:11 +0200 Subject: [PATCH] feat(dueDate): don't show today schedule button if on today list --- src/app/features/tasks/task/task.component.html | 2 +- src/app/features/tasks/task/task.component.ts | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) diff --git a/src/app/features/tasks/task/task.component.html b/src/app/features/tasks/task/task.component.html index aa7472a961..96ade55e05 100644 --- a/src/app/features/tasks/task/task.component.html +++ b/src/app/features/tasks/task/task.component.html @@ -247,7 +247,7 @@ [innerHTML]="t.dueWithTime | shortPlannedAt" > - } @else if (t.dueDay) { + } @else if (t.dueDay && isShowDueToday()) {