Skip to content

Commit

Permalink
Use an even default for items per page
Browse files Browse the repository at this point in the history
  • Loading branch information
oandregal committed Nov 6, 2023
1 parent ef5887d commit 2d09d90
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -86,7 +86,7 @@ function ViewTypeMenu( { view, onChangeView } ) {
);
}

const PAGE_SIZE_VALUES = [ 5, 20, 50 ];
const PAGE_SIZE_VALUES = [ 6, 20, 50 ];
function PageSizeMenu( { view, onChangeView } ) {
return (
<DropdownSubMenuV2
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ const DEFAULT_PAGE_BASE = {
search: '',
filters: [],
page: 1,
perPage: 5,
perPage: 6,
sort: {
field: 'date',
direction: 'desc',
Expand Down

0 comments on commit 2d09d90

Please sign in to comment.