diff --git a/client/pages/ProjectBoard.tsx b/client/pages/ProjectBoard.tsx index 18ccbe8a..1697b7f1 100644 --- a/client/pages/ProjectBoard.tsx +++ b/client/pages/ProjectBoard.tsx @@ -207,17 +207,53 @@ export default function ProjectBoard() { {t.description}

) : null} -
- {columns.map((k) => ( +
+
+ {t.assignee ? ( + + + {t.assignee.full_name || t.assignee.username || "Assignee"} + + ) : ( + Unassigned + )} + {t.due_date ? ( + • Due {new Date(t.due_date).toLocaleDateString()} + ) : null} +
+
+ {columns.map((k) => ( + + ))} - ))} + +
))