Refactor: cleanup

This commit is contained in:
2022-11-13 00:02:25 +01:00
parent 75f0418a49
commit 68b8527d2e
2 changed files with 2 additions and 5 deletions

View File

@@ -112,7 +112,7 @@
<!-- eslint-disable-next-line -->
<template #footer.page-text="{ pageStart, pageStop, itemsLength }">
<span>{{ pageStart }} - {{ pageStop }} von {{ itemsLength }}</span>
<span>{{ pageStart }}-{{ pageStop }} von {{ itemsLength }}</span>
</template>
</v-data-iterator>
</v-container>
@@ -150,9 +150,6 @@ export default {
courseId () {
return this.$store.state.selectedCourse
},
numberOfPages () {
return Math.ceil(this.questions.length / this.itemsPerPage)
},
actionButtons () {
const self = this
return [

View File

@@ -42,7 +42,7 @@
<TutorPanel :course-id="courseID" />
</v-col>
<v-col cols="12">
<QuizComponent :course-id="courseID" />
<QuizComponent />
</v-col>
<v-col cols="12">
<CommunityComponent />