From 24c89ac38193ed0b4182aa1085e5dfa3161215b2 Mon Sep 17 00:00:00 2001 From: Hykilpikonna Date: Sun, 12 Apr 2020 15:04:10 -0400 Subject: [PATCH] [O] Trim course names --- src/logic/course-info.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/logic/course-info.ts b/src/logic/course-info.ts index 8af1eef..925b19b 100644 --- a/src/logic/course-info.ts +++ b/src/logic/course-info.ts @@ -19,7 +19,7 @@ export default class CourseInfo { this.id_ci = json.id_ci this.year = json.year - this.name = json.name + this.name = json.name.trim() this.teacher = json.teacher this.level = json.level this.courseIds = json.courseIds