From 62ce843f382d00645ea9f11f4a28a148b9aaa975 Mon Sep 17 00:00:00 2001 From: "Builder.io" Date: Sun, 19 Oct 2025 21:18:17 +0000 Subject: [PATCH] Show assignee and due date; add quick actions Assign me and Delete cgen-d4ebfd386b0b429b98d37a7acc178bb7 --- client/pages/ProjectBoard.tsx | 50 ++++++++++++++++++++++++++++++----- 1 file changed, 43 insertions(+), 7 deletions(-) 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) => ( + + ))} - ))} + +
))