Skip to content

Commit 626ef87

Browse files
scott graysonscott grayson
authored andcommitted
Reduce pagination to 4 items per page for testing
- Changed from 8 to 4 to make pagination visible with fewer articles - Can be adjusted back to 8 or made configurable later
1 parent 0cec40a commit 626ef87

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/Http/Controllers/PublicHelpArticleController.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ public function index()
6464
->where('is_public', true)
6565
->where('is_hidden', false)
6666
->orderBy('name')
67-
->paginate(8);
67+
->paginate(4);
6868

6969
// Allow projects to publish and customize the view
7070
// Check for published view first, then use package default

0 commit comments

Comments
 (0)