Commit d01dbafb authored by Miguel Rincon's avatar Miguel Rincon

Remove unused page size in pipeline list query

This change removes the `.per(30)` that gets overridden
by the page size when the list of pipelines is shown.
parent 71e64878
......@@ -39,7 +39,7 @@ class Projects::PipelinesController < Projects::ApplicationController
.new(project, current_user, index_params)
.execute
.page(params[:page])
.per(30)
.per(20)
@pipelines_count = limited_pipelines_count(project)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment