Plan — Add missing status filter options to pipeline page#
Summary#
Add blocked, gated, and stopped options to the status filter <select> dropdown on the pipeline page. This is a single-file UI fix — no backend changes required.
Files#
| File | Action | Description |
|---|---|---|
app/pipeline/page.tsx | modify | Add three missing <option> elements to the status filter dropdown (lines 314–319) |
Steps#
- Add missing status options — Insert
<option value="blocked">Blocked</option>,<option value="gated">Gated</option>, and<option value="stopped">Stopped</option>into the<select>element at lines 314–319 ofapp/pipeline/page.tsx, reordering to: Active → Blocked → Gated → Complete → Failed → Stuck → Paused → Stopped.
Verification#
npm run lintpasses with zero warningsnpm run buildcompiles successfully- The status dropdown visually contains all eight options (including "All statuses") in the specified order