fix: currentPage of pagination component is undefined
continuous-integration/drone/pr Build is passing Details

This commit is contained in:
kolaente 2021-11-14 21:23:37 +01:00
parent 1fa164453c
commit c3e8808edf
Signed by: konrad
GPG Key ID: F40E70337AB24C9B
2 changed files with 2 additions and 2 deletions

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>