From ec056ef3b38adb65276788e401be8f22b93c0a58 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sun, 13 Oct 2019 21:13:39 -0400 Subject: [PATCH] [+] Remove loading when it's done loading --- src/components/app/app.ts | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/components/app/app.ts b/src/components/app/app.ts index e66647c..2d8df31 100644 --- a/src/components/app/app.ts +++ b/src/components/app/app.ts @@ -229,8 +229,10 @@ export default class App extends Vue pWaitFor(() => this.filteredCourses.every(c => c.grading != undefined)).then(() => { // When the assignments are ready - // TODO: Display loading this.assignmentsReady = true; + + // Remove loading + this.logLoading(''); }) }