Skip to content

Commit

Permalink
Merge pull request #1549 from PrefectHQ/p-pager-limit-100
Browse files Browse the repository at this point in the history
Add 100 to the options for page limit
  • Loading branch information
pleek91 authored Dec 18, 2024
2 parents 7ae3208 + 336aa9a commit fff97be
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/Pager/PPager.vue
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@
const pages = defineModel<number>('pages')
const limit = defineModel<number>('limit')
const limits = defineModel<number[]>('limits', { default: () => [5, 10, 25, 50] })
const limits = defineModel<number[]>('limits', { default: () => [5, 10, 25, 50, 100] })
const limitText = computed(() => 'Items per page')
const disableFirst = computed(() => page.value === 1)
Expand Down

0 comments on commit fff97be

Please sign in to comment.