Ajoute date debut et date de fin
Signed-off-by: Gato <cedric@goutailler-olivier.fr>
This commit is contained in:
@@ -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)
|
||||
|
||||
Reference in New Issue
Block a user