Ajoute icone pour priorite + changement donnée envoyé

This commit is contained in:
2026-05-25 22:46:30 +02:00
parent 976f15feaf
commit 9fc88d8875
10 changed files with 51 additions and 15 deletions
+1 -1
View File
@@ -3,7 +3,7 @@ import { firstValueFrom } from 'rxjs';
import { IssuesApiService } from './issues-api.service';
export type IssueStatus = 'draft' | 'todo' | 'done' | 'in-progress';
export type IssuePriority = 'Basse' | 'Moyenne' | 'Haute';
export type IssuePriority = 'TRES_FAIBLE' | 'BASSE' | 'MOYENNE' | 'HAUTE' | 'TRES_HAUTE';
export type IssueType = 'Epic' | 'Bug' | 'Study' | 'Story' | 'Task' | 'Technical Story';
export type IssueComment = {