Fix error 500 on Runners page.
~~~~ ActionView::Template::Error (Missing partial kaminari/_paginator ~~~~ Bug-Debian: https://bugs.debian.org/cgi-bin/bugreport.cgi?bug=819903 Signed-off-by: Dmitry Smirnov <onlyjob@member.fsf.org>
This commit is contained in:
parent
9103023054
commit
24538ec090
3 changed files with 3 additions and 3 deletions
|
@ -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"
|
||||
|
|
Loading…
Reference in a new issue