diff options
Diffstat (limited to 'app/helpers/pagination_helper.rb')
-rw-r--r-- | app/helpers/pagination_helper.rb | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/helpers/pagination_helper.rb b/app/helpers/pagination_helper.rb index d05153c9d4b..8586bfdb700 100644 --- a/app/helpers/pagination_helper.rb +++ b/app/helpers/pagination_helper.rb @@ -11,13 +11,13 @@ module PaginationHelper def paginate_without_count(collection) render( - 'kaminari/gitlab/without_count', + "kaminari/gitlab/without_count", previous_path: path_to_prev_page(collection), next_path: path_to_next_page(collection) ) end def paginate_with_count(collection, remote: nil) - paginate(collection, remote: remote, theme: 'gitlab') + paginate(collection, remote: remote, theme: "gitlab") end end |