show attachment in task card and show check list item in task card
deploy to danak / build_and_deploy (push) Has been cancelled

This commit is contained in:
hamid zarghami
2026-07-25 09:20:48 +03:30
parent 086db34c12
commit 13781df281
5 changed files with 14 additions and 10 deletions
@@ -9,9 +9,9 @@ export const mapTaskItemToTask = (task: TaskItemType, taskPhaseId: string, fallb
tag: task.tag ?? "",
dateRange: task.dateRange ?? "",
color: task.color || null,
attachments: task.attachments ?? 0,
checklistDone: task.checklistDone ?? 0,
checklistTotal: task.checklistTotal ?? 0,
attachments: task.attachmentCount ?? 0,
checklistDone: task.completedCheckListItemCount ?? 0,
checklistTotal: task.checkListItemCount ?? 0,
ticketId: task.ticketId ?? null,
users: task.users ?? [],
});