Skip to content

Commit b63dcfc

Browse files
ashokDevsclaude
andcommitted
fix: sidebar job links now navigate to job detail page
Was linking to /dashboard?job_id=... which did nothing. Now links to /jobs/{id} where the actual job detail page lives. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
1 parent 711f426 commit b63dcfc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

frontend/components/dashboard/Sidebar.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -228,7 +228,7 @@ export function Sidebar({ isMobileOpen, setIsMobileOpen, isCollapsed, setIsColla
228228
{filteredJobs.map((job) => (
229229
<Link
230230
key={job.id}
231-
href={`/dashboard?job_id=${job.id}`}
231+
href={`/jobs/${job.id}`}
232232
className="group flex items-center gap-3 py-2 px-2 hover:bg-white/5 rounded-lg transition-all"
233233
>
234234
<div className="shrink-0">

0 commit comments

Comments
 (0)