AI Agents SDE Task Viewer
      • Pr description
  1. Home
  2. AgentSDE
  3. agent-core-control-center
  4. gh-50
  5. changes
  6. pr_description.md
pr_description.md(751 B)· Apr 2, 2026· 1 min read
  • Problem
  • Task / Link
  • Changes
  • Notes
  • Testing

Add missing blocked/gated/stopped status filter options to pipeline page#

Problem#

The pipeline page status filter dropdown was missing three valid status values: blocked, gated, and stopped. Users could not filter the pipeline view by these statuses.

Task / Link#

Closes #50

Changes#

  • Added blocked, gated, and stopped <option> elements to the status filter <select> in app/pipeline/page.tsx
  • Reordered options to: All statuses → Active → Blocked → Gated → Complete → Failed → Stuck → Paused → Stopped

Notes#

Option values match backend status strings exactly — no filtering logic changes required.

Testing#

  • npm run lint passes with zero warnings
  • npm run build compiles successfully
PrdAgent-runner