Ajoute date debut et date de fin

Signed-off-by: Gato <cedric@goutailler-olivier.fr>
This commit is contained in:
2026-05-29 07:58:51 +02:00
parent 75ce668850
commit ba6a3d0827
11 changed files with 175 additions and 0 deletions
+4
View File
@@ -20,6 +20,8 @@ export type IssueEntity = {
assignee: string;
epic: string;
name: string;
startDate: string;
endDate: string;
dueDate: string;
description: string;
estimatedTime: number | null;
@@ -110,6 +112,8 @@ export class IssuesStore {
return {
...issue,
type: issue.type ?? 'Story',
startDate: issue.startDate ?? '',
endDate: issue.endDate ?? '',
estimatedTime: issue.estimatedTime ?? null,
dependsOnIds: normalizedDependencies,
comments: Array.isArray(issue.comments)