feat: show done tasks section only if there are done tasks

This commit is contained in:
Johannes Millan 2025-10-07 14:44:53 +02:00
parent 6e3fccabc2
commit 61d03a8ebf

View file

@ -260,7 +260,7 @@
</div>
}
@if (!isPlanningMode() || hasDoneTasks()) {
@if (hasDoneTasks()) {
@let nrOfDoneArchived =
doneTasks()?.length === 0
? (workContextService.doneTodayArchived$ | async)