Skip to content

Commit 924aae3

Browse files
authored
[6.x] Apply default pagination size in control panel listings (#13893)
1 parent d17ca21 commit 924aae3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

resources/js/components/ui/Listing/Listing.vue

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -143,7 +143,7 @@ const props = defineProps({
143143
/** Number of items to display per page. */
144144
perPage: {
145145
type: Number,
146-
default: 15,
146+
default: () => Statamic.$config.get('paginationSize', 15),
147147
},
148148
/** When `true`, shows the totals in the paginator. e.g. "1-5 of 10" */
149149
showPaginationTotals: {

0 commit comments

Comments
 (0)