Skip to content

Commit

Permalink
card badge map includes whether the card is selected.
Browse files Browse the repository at this point in the history
Part of #174. Part of #688.
  • Loading branch information
jkomoros committed Mar 31, 2024
1 parent cab5c49 commit 1b091b0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/selectors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1016,7 +1016,8 @@ export const selectBadgeMap = createSelector(
selectUserReads,
selectCardTodosMapForCurrentUser,
selectUserReadingListMap,
(stars, reads, todos, readingList) => ({stars, reads, todos, readingList})
selectExplicitlySelectedCardIDs,
(stars, reads, todos, readingList, selected) => ({stars, reads, todos, readingList, selected})
);

//TODO: once factoring the composed threads selctors into this file, refactor
Expand Down

0 comments on commit 1b091b0

Please sign in to comment.