Skip to content

Commit d51b488

Browse files
committed
Display: - Replace TeacherBar component with BaseAvatarList component - refs BT#21657
1 parent 0e44601 commit d51b488

File tree

3 files changed

+2
-45
lines changed

3 files changed

+2
-45
lines changed

assets/vue/components/TeacherBar.vue

Lines changed: 0 additions & 42 deletions
This file was deleted.

assets/vue/components/course/CourseCard.vue

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,14 +51,14 @@
5151
</div>
5252
</template>
5353
<template #footer>
54-
<TeacherBar :teachers="teachers" />
54+
<BaseAvatarList :users="teachers" />
5555
</template>
5656
</Card>
5757
</template>
5858

5959
<script setup>
6060
import Card from "primevue/card"
61-
import TeacherBar from "../TeacherBar"
61+
import BaseAvatarList from "../basecomponents/BaseAvatarList.vue"
6262
import { computed } from "vue"
6363
import { isEmpty } from "lodash"
6464
import { useFormatDate } from "../../composables/formatDate"

assets/vue/views/course/CatalogueCourses.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -173,7 +173,6 @@ import Button from "primevue/button"
173173
import DataTable from "primevue/datatable"
174174
import Column from "primevue/column"
175175
import Rating from "primevue/rating"
176-
import TeacherBar from "../../components/TeacherBar.vue"
177176
import { usePlatformConfig } from "../../store/platformConfig"
178177
179178
const status = ref(null)

0 commit comments

Comments
 (0)