From 15b58548cc05c1b5bb584d619d33c3d0043d9b5b Mon Sep 17 00:00:00 2001 From: Christoph Haas Date: Sat, 6 Mar 2021 20:51:48 +0100 Subject: [PATCH] Show more log lines per page --- app/controllers/my_controller.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/controllers/my_controller.rb b/app/controllers/my_controller.rb index 567e144..0ff819c 100644 --- a/app/controllers/my_controller.rb +++ b/app/controllers/my_controller.rb @@ -4,7 +4,7 @@ class MyController < ApplicationController # Show audit logs def logs - @logs = Log.paginate(page: params[:page], per_page: 6) + @logs = Log.paginate(page: params[:page], per_page: 20) render :logs end