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
This commit is contained in:
2025-12-31 12:47:52 +01:00
parent d9db2031da
commit 1bf11e985c
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;