Skip to content

Commit b1fe58a

Browse files
committed
Added missing pagination for FontsList
1 parent 1befef8 commit b1fe58a

File tree

1 file changed

+4
-5
lines changed

1 file changed

+4
-5
lines changed

resources/js/console/screens/FontsList/FontsListScreen.vue

+4-5
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,10 @@
1818
<template #after-table>
1919
<Pagination
2020
v-if="paginationMeta"
21-
:from="paginationMeta.from || 0"
22-
:to="paginationMeta.to || 0"
23-
:total="paginationMeta.total"
24-
@next="loadRecords(page + 1)"
25-
@prev="loadRecords(page - 1)"
21+
:total-records="paginationMeta.total"
22+
:total-pages="paginationMeta.last_page"
23+
:current="page"
24+
@go-to-page="loadRecords"
2625
/>
2726
</template>
2827
</Table>

0 commit comments

Comments
 (0)