Skip to content

Commit

Permalink
Added missing pagination for FontsList
Browse files Browse the repository at this point in the history
  • Loading branch information
sethsandaru committed Nov 4, 2023
1 parent 1befef8 commit b1fe58a
Showing 1 changed file with 4 additions and 5 deletions.
9 changes: 4 additions & 5 deletions resources/js/console/screens/FontsList/FontsListScreen.vue
Original file line number Diff line number Diff line change
Expand Up @@ -18,11 +18,10 @@
<template #after-table>
<Pagination
v-if="paginationMeta"
:from="paginationMeta.from || 0"
:to="paginationMeta.to || 0"
:total="paginationMeta.total"
@next="loadRecords(page + 1)"
@prev="loadRecords(page - 1)"
:total-records="paginationMeta.total"
:total-pages="paginationMeta.last_page"
:current="page"
@go-to-page="loadRecords"
/>
</template>
</Table>
Expand Down

0 comments on commit b1fe58a

Please sign in to comment.