Add Task issue type and update menu title to Bonsai

This commit is contained in:
Cédric OLIVIER
2026-05-22 19:08:06 +02:00
parent f6203d41b8
commit ed3d40fec7
3 changed files with 3 additions and 2 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 = 'Epic' | 'Bug' | 'Study' | 'Story' | 'Technical Story';
export type IssueType = 'Epic' | 'Bug' | 'Study' | 'Story' | 'Task' | 'Technical Story';
export type IssueEntity = {
id: number;