Skip to content

Commit

Permalink
fix: typo in exported personal mentoring start date (#2592)
Browse files Browse the repository at this point in the history
  • Loading branch information
karlovich authored Feb 6, 2025
1 parent 6a16d98 commit a57bd7f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions nestjs/src/courses/dto/export-course.dto.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class ExportCourseDto {
this.description = course.description;
this.descriptionUrl = course.descriptionUrl;
this.registrationEndDate = course.registrationEndDate?.toISOString() ?? null;
this.personalMentoringStateDate = course.personalMentoringStartDate?.toISOString() ?? null;
this.personalMentoringStartDate = course.personalMentoringStartDate?.toISOString() ?? null;
this.personalMentoringEndDate = course.personalMentoringEndDate?.toISOString() ?? null;
this.wearecommunityUrl = course.wearecommunityUrl || null;
}
Expand All @@ -27,7 +27,7 @@ export class ExportCourseDto {
registrationEndDate: string | null;
startDate: string;
endDate: string;
personalMentoringStateDate: string | null;
personalMentoringStartDate: string | null;
personalMentoringEndDate: string | null;
wearecommunityUrl: string | null;
}

0 comments on commit a57bd7f

Please sign in to comment.