fix(frontend): align issue types with backend enums

- Fix IssueStatus: remove 'done', keep 'closed'
- Add IssuePriority 'critical' level
- Add IssueType enum (epic, story, task, bug)
- Update constants, hooks, and mocks to match
- Fix StatusWorkflow component icons

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
This commit is contained in:
2025-12-31 12:47:52 +01:00
parent ab913575e1
commit 5fab15a11e
5 changed files with 31 additions and 13 deletions

View File

@@ -26,7 +26,6 @@ const STATUS_ICONS = {
in_progress: PlayCircle,
in_review: Clock,
blocked: AlertCircle,
done: CheckCircle2,
closed: XCircle,
} as const;