Skip to content

Commit

Permalink
linting to specs
Browse files Browse the repository at this point in the history
  • Loading branch information
averheecke-scottlogic committed Dec 18, 2023
1 parent 13c1ca7 commit 7b5150e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -114,7 +114,8 @@ export class StudentHomePageComponent implements OnInit {
});
});

this.courses.sort((a: StudentCourse, b: StudentCourse) => (a.course.creationTimestamp < b.course.creationTimestamp ? 1 : -1));
this.courses.sort((a: StudentCourse, b: StudentCourse) =>

Check failure on line 117 in src/web/app/pages-student/student-home-page/student-home-page.component.ts

View workflow job for this annotation

GitHub Actions / lint (ubuntu-latest)

Trailing spaces not allowed

Check failure on line 117 in src/web/app/pages-student/student-home-page/student-home-page.component.ts

View workflow job for this annotation

GitHub Actions / lint (windows-latest)

Trailing spaces not allowed
(a.course.creationTimestamp < b.course.creationTimestamp ? 1 : -1));
this.courses.slice(0, 3).forEach((course: StudentCourse) => {
course.isTabExpanded = true;
this.loadFeedbackSessionsForCourse(course.course.courseId);
Expand Down

0 comments on commit 7b5150e

Please sign in to comment.