Skip to content

Commit 567195d

Browse files
authored
Merge pull request #962 from b0ink/fix/taskdesc-startbydate
Fix/task description start by date
2 parents 3c71eec + bef0a9c commit 567195d

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/app/projects/states/dashboard/directives/task-dashboard/directives/task-description-card/task-description-card.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -53,7 +53,7 @@ export class TaskDescriptionCardComponent {
5353
}
5454

5555
public startDate(): Date {
56-
return this.task?.startDate;
56+
return this.task?.startDate ?? this.taskDef?.startDate;
5757
}
5858

5959
public shouldShowDeadline(): boolean {

0 commit comments

Comments
 (0)