Skip to content

Commit

Permalink
chore: removed vue-tsc
Browse files Browse the repository at this point in the history
  • Loading branch information
EwoutV committed Apr 18, 2024
1 parent 8508b41 commit 6a944b8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@
"scripts": {
"dev": "vite",
"host": "vite --host",
"build": "vue-tsc && vite build",
"build": "vite build",
"preview": "vite preview",
"test": "vitest run",
"cypress:open": "cypress open",
Expand Down
2 changes: 1 addition & 1 deletion frontend/src/views/courses/SearchCourseView.vue
Original file line number Diff line number Diff line change
Expand Up @@ -110,7 +110,7 @@ onMounted(async () => {
{{ t('views.courses.search.results', [pagination.count]) }}
</p>
<CourseList class="mt-3" :courses="pagination?.results ?? null" :cols="3" :detail="false" />
<Paginator :rows="pageSize" :total-records="pagination?.count" :first="first" v-model:first="first" />
<Paginator :rows="pageSize" :total-records="pagination?.count" v-model:first="first" />
</div>
</div>
</BaseLayout>
Expand Down

0 comments on commit 6a944b8

Please sign in to comment.