From 0f084704eed3818a7f3c83c6807d8cada23e3dd3 Mon Sep 17 00:00:00 2001 From: Hammer Date: Thu, 29 Jan 2026 08:06:37 +0000 Subject: [PATCH] feat: clickable links on dashboard, priority badges on up-next - Up Next items link to task detail pages - Recently Completed items are now clickable links - High/critical priority badges shown on Up Next items - Hover states on dashboard items --- frontend/src/pages/DashboardPage.tsx | 15 ++++++++++----- 1 file changed, 10 insertions(+), 5 deletions(-) diff --git a/frontend/src/pages/DashboardPage.tsx b/frontend/src/pages/DashboardPage.tsx index cd818ed..d6b9666 100644 --- a/frontend/src/pages/DashboardPage.tsx +++ b/frontend/src/pages/DashboardPage.tsx @@ -202,11 +202,16 @@ export function DashboardPage() {

Up Next

{upNext.map((task, i) => ( -
+ {i + 1}. HQ-{task.taskNumber} - {task.title} -
+ {task.title} + {task.priority === "high" || task.priority === "critical" ? ( + + {task.priority} + + ) : null} + ))}
@@ -234,7 +239,7 @@ export function DashboardPage() {
{recentlyCompleted.map((task) => ( -
+
HQ-{task.taskNumber} {task.completedAt && ( @@ -242,7 +247,7 @@ export function DashboardPage() { )}

{task.title}

-
+ ))}