Commit 24538ec0 authored by Libor Klepáč's avatar Libor Klepáč Committed by Dmitry Smirnov

Fix error 500 on Runners page.

~~~~
ActionView::Template::Error (Missing partial kaminari/_paginator
~~~~

Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=819903Signed-off-by: default avatarDmitry Smirnov <onlyjob@member.fsf.org>
parent 91030230
......@@ -73,4 +73,4 @@
- @runners.each do |runner|
= render "admin/runners/runner", runner: runner
= paginate @runners
= paginate @runners, theme: "gitlab"
......@@ -67,7 +67,7 @@
= form_for [:admin, project.namespace.becomes(Namespace), project, project.runner_projects.new] do |f|
= f.hidden_field :runner_id, value: @runner.id
= f.submit 'Enable', class: 'btn btn-xs'
= paginate @projects
= paginate @projects, theme: "gitlab"
.col-md-6
%h4 Recent builds served by this runner
......
......@@ -26,4 +26,4 @@
%h4.underlined-title Available specific runners
%ul.bordered-list.available-specific-runners
= render partial: 'runner', collection: @assignable_runners, as: :runner
= paginate @assignable_runners
= paginate @assignable_runners, theme: "gitlab"
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