Skip to content

Commit

Permalink
fix next pg bug (#97)
Browse files Browse the repository at this point in the history
  • Loading branch information
Paterick authored Jun 10, 2024
1 parent 2ae5248 commit 116c039
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/BaseTablePagination.vue
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ const paginationLegend = computed(() => {
})
const hasPrevPage = computed(() => props.currentPage > 0)
const hasNextPage = computed(() => (props.currentPage + 1) * props.pageSize <= props.itemsCount)
const hasNextPage = computed(() => (props.currentPage + 1) * props.pageSize < props.itemsCount)
function onPageSizeChanged({ target: { value } }) {
emit('pageSizeChanged', Number(value))
Expand Down

0 comments on commit 116c039

Please sign in to comment.