Add Epic issue type and enhance issue detail display with epic-related information

This commit is contained in:
Cédric OLIVIER
2026-05-22 18:57:06 +02:00
parent dc6135ee95
commit 8bd2b4853f
4 changed files with 124 additions and 7 deletions
+1 -1
View File
@@ -4,7 +4,7 @@ const ISSUES_STORAGE_KEY = 'bonsai.issues';
export type IssueStatus = 'draft' | 'todo' | 'done' | 'in-progress';
export type IssuePriority = 'Basse' | 'Moyenne' | 'Haute';
export type IssueType = 'Bug' | 'Study' | 'Story' | 'Technical Story';
export type IssueType = 'Epic' | 'Bug' | 'Study' | 'Story' | 'Technical Story';
export type IssueEntity = {
id: number;