24 lines
918 B
Markdown
24 lines
918 B
Markdown
---
|
|
title: T02 summary
|
|
status: done
|
|
files:
|
|
- job-tracker-ui/src/components/JobTable.tsx
|
|
- job-tracker-ui/src/daily-control-loop.test.tsx
|
|
verification:
|
|
- CI=true npm --prefix job-tracker-ui test -- --watch=false --runTestsByPath src/daily-control-loop.test.tsx
|
|
- CI=true npm --prefix job-tracker-ui run build
|
|
---
|
|
|
|
Made the job table expose the next action directly and prove the daily loop end-to-end.
|
|
|
|
What changed:
|
|
- `job-tracker-ui/src/components/JobTable.tsx`
|
|
- follow-up and CV status chips now route directly into the right job workspace tab
|
|
- the table participates in the same routed workspace flow as dashboard and reminders
|
|
- `job-tracker-ui/src/daily-control-loop.test.tsx`
|
|
- expanded the focused test to prove the table chip routes into the follow-up workspace and that reminders can route into the tailored-CV workspace
|
|
|
|
Verification:
|
|
- Focused daily-loop test passed
|
|
- Frontend build passed
|