feat: Attachments icon on front of cards

Closes #225
This commit is contained in:
Maksim Eltyshev
2024-10-22 21:38:04 +02:00
parent 96a1049fb6
commit 0bc2975797
3 changed files with 36 additions and 1 deletions
+2
View File
@@ -35,6 +35,7 @@ const makeMapStateToProps = () => {
const users = selectUsersByCardId(state, id);
const labels = selectLabelsByCardId(state, id);
const tasks = selectTasksByCardId(state, id);
const attachmentsTotal = selectors.selectAttachmentsTotalByCardId(state, id);
const notificationsTotal = selectNotificationsTotalByCardId(state, id);
const isCurrentUserEditor =
@@ -53,6 +54,7 @@ const makeMapStateToProps = () => {
listId,
projectId,
isPersisted,
attachmentsTotal,
notificationsTotal,
users,
labels,