fix: list title on CoursePage
diff --git a/erpnext/public/js/education/lms/pages/CoursePage.vue b/erpnext/public/js/education/lms/pages/CoursePage.vue
index d5b4d0a..56656c5 100644
--- a/erpnext/public/js/education/lms/pages/CoursePage.vue
+++ b/erpnext/public/js/education/lms/pages/CoursePage.vue
@@ -2,7 +2,7 @@
<div>
<TopSection v-bind:title="course.course_name" v-bind:description="course.description">
</TopSection>
- <CardList :title="'Courses'" :description="''" :sectionType="'section-padding section-bg'">
+ <CardList :title="'Topics'" :description="''" :sectionType="'section-padding section-bg'">
<TopicCard slot="card-list-slot" v-for="topic in topicData" :topic="topic" :course="course.course_name" :program_name="program_name" :key="topic.name"/>
</CardList>
</div>