From cbdcfc4ca177cfb47d5977ecef943ac62d558057 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Tue, 1 Oct 2019 18:30:02 -0400 Subject: [PATCH] [+] Check gradings after checking assignments --- src/components/app/app.ts | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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(); }); }