diff --git a/src/components/app/app.ts b/src/components/app/app.ts index 13b3cdc..3e9aae5 100644 --- a/src/components/app/app.ts +++ b/src/components/app/app.ts @@ -161,12 +161,11 @@ export default class App extends Vue // Wait for assignments to be ready. pWaitFor(() => this.isAssignmentsReady()).then(() => { - // When the assignments are ready - // TODO: Display loading - this.assignmentsReady = true; - // Filter courses this.filteredCourses = CourseUtils.getGradedCourses(this.courses); + + // Check grading algorithms + this.checkGradingAlgorithms(); }); }