From 335356c2be688fa63ac97b1fad9b7d28168aabdf Mon Sep 17 00:00:00 2001 From: Jarold Wong Date: Fri, 9 Feb 2024 13:41:08 -0800 Subject: [PATCH] remove trailing slash --- app/course/services/courseService.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/course/services/courseService.js b/app/course/services/courseService.js index 28ce05f6f..05b792e64 100644 --- a/app/course/services/courseService.js +++ b/app/course/services/courseService.js @@ -97,7 +97,7 @@ class CourseService { return _self.ApiService.delete("/api/courseView/courses/" + course.id + "/tags/" + tag.id); }, getSectionsBySectionGroupId: function (sectionGroupId) { - return _self.ApiService.get("/api/courseView/sectionGroups/" + sectionGroupId + "/sections/"); + return _self.ApiService.get("/api/courseView/sectionGroups/" + sectionGroupId + "/sections"); }, updateSection: function (section) { if (!section) { return; }