Skip to content

Commit ab2f4d0

Browse files
authored
Merge pull request #7797 from nextcloud/fix-nodue-column
fix: showing no due cards
2 parents 6c447de + 9ace2dd commit ab2f4d0

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

lib/Service/OverviewService.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -34,8 +34,8 @@ public function findUpcomingCards(string $userId): array {
3434
}, $userBoards));
3535

3636
$foundCards = array_merge(
37-
// private board: get cards with due date
38-
$this->cardMapper->findAllWithDue($boardOwnerIds),
37+
// private board: get all my assigned or unassigned cards
38+
$this->cardMapper->findToMeOrNotAssignedCards($boardOwnerIds, $userId),
3939
// shared board: get all my assigned or unassigned cards
4040
$this->cardMapper->findToMeOrNotAssignedCards($boardSharedIds, $userId)
4141
);

0 commit comments

Comments
 (0)