Increased pagy per page

This commit is contained in:
2024-09-17 14:40:07 +02:00
parent 7b6a2faeca
commit b5021d5683

View File

@@ -2,6 +2,6 @@ class Admin::JobsController < ApplicationController
before_action :authorize! before_action :authorize!
def index def index
@jobs = Job.all @jobs = Job.all
@pagy, @records = pagy(@jobs, limit: 10) @pagy, @records = pagy(@jobs, limit: 20)
end end
end end