fix: currentPage of pagination component is undefined #1002

Merged
konrad merged 2 commits from fix/current-page-undefined into main 2021-11-14 21:06:26 +00:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit c3e8808edf - Show all commits

View File

@ -120,7 +120,7 @@
<Pagination
:total-pages="taskCollectionService.totalPages"
:current-page="currentPage"
:current-page="currentPage || 0"
/>
</card>

View File

@ -170,7 +170,7 @@
<Pagination
:total-pages="taskCollectionService.totalPages"
:current-page="currentPage"
:current-page="currentPage || 0"
/>
</card>