diff --git a/src/pages/course-selection/course-selection.vue b/src/pages/course-selection/course-selection.vue index 02a43f0..82e8cfe 100644 --- a/src/pages/course-selection/course-selection.vue +++ b/src/pages/course-selection/course-selection.vue @@ -54,7 +54,7 @@ { @Prop({required: true}) app: App - search: string = ""; + search: string = ''; courseInfo: CourseInfo[] = [] courseIdIndex: any = {} // Map directory: {gradeLevel: number, classes: string}[] = [] @@ -69,7 +69,7 @@ created() { // Update width dynamically - window.addEventListener("resize", this.updateHeight); + window.addEventListener('resize', this.updateHeight); // Get courses App.http.post('/course-info', {}).then(result => @@ -113,7 +113,7 @@ destroyed() { // Remove width updater - window.removeEventListener("resize", this.updateHeight); + window.removeEventListener('resize', this.updateHeight); } /**