diff --git a/ondeck/src/app/(dashboard)/tasks/page-client.tsx b/ondeck/src/app/(dashboard)/tasks/page-client.tsx index 6dc46ac..7e4fe6b 100644 --- a/ondeck/src/app/(dashboard)/tasks/page-client.tsx +++ b/ondeck/src/app/(dashboard)/tasks/page-client.tsx @@ -270,65 +270,64 @@ function TaskCard({ task: initial }: { task: Task }) { )} - {/* Right sidebar: 2-col — data col auto-width, icon col fixed */} -
-
- {/* Left col: Due / Status / Level (data only, fit to content) */} -
- - {formatDate(task.dueDate)} - - - - {levelLabel} - -
- {/* Right col: Complete / N/A / Edit (icon-only) */} -
- - {task.status !== 'COMPLETED' && task.status !== 'NA' && task.status !== 'CANCELLED' && ( - - )} - -
+ {/* Right sidebar: excel-style grid */} +
+ {/* Row 1: Due date | Complete */} +
+ {formatDate(task.dueDate)}
- {/* Notes: full width bottom */} + + {/* Row 2: Status | N/A */} +
+ +
+ {task.status !== 'COMPLETED' && task.status !== 'NA' && task.status !== 'CANCELLED' ? ( + + ) : ( +
+ )} + {/* Row 3: Level | Edit */} +
+ {levelLabel} +
+ + {/* Row 4: Notes spanning both cols */}