From baeb4d2f406a6132e240cbc7720c70b51f98fb4d Mon Sep 17 00:00:00 2001 From: Alex Thomassen Date: Fri, 24 Nov 2023 14:56:36 +0000 Subject: [PATCH] Default mod actions limit is 50 --- app/Http/Controllers/DashboardController.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/Http/Controllers/DashboardController.php b/app/Http/Controllers/DashboardController.php index 22cb886..c855b7b 100644 --- a/app/Http/Controllers/DashboardController.php +++ b/app/Http/Controllers/DashboardController.php @@ -20,7 +20,7 @@ public function index(Request $request) public function channel(ChannelActionsRequest $request, Channel $channel) { - $limit = $request->input('limit', 25); + $limit = $request->input('limit', 50); return view('dashboard.channel', [ 'channel' => $channel,