Default mod actions limit is 50

This commit is contained in:
Alex Thomassen 2023-11-24 14:56:36 +00:00
parent 48778b3f5c
commit baeb4d2f40
Signed by: Alex
GPG Key ID: 10BD786B5F6FF5DE

View File

@ -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,