Skip to content

Commit

Permalink
Set default page size of command to nought to match constructor
Browse files Browse the repository at this point in the history
  • Loading branch information
caendesilva committed Jan 12, 2023
1 parent c4df021 commit 6acde59
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 @@ -215,7 +215,7 @@ protected function getPageSize(): int
return (int) $this->askWithValidation('pageSize',
'Enter the page size (0 for no limit)',
['required', 'integer', 'between:0,100'],
25
0
);
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ public function testWithTagFieldInput()
"listTemplate": "list.blade.php",
"sortField": "__createdAt",
"sortAscending": true,
"pageSize": 25,
"pageSize": 0,
"fields": [
{
"type": "datetime",
Expand Down

0 comments on commit 6acde59

Please sign in to comment.