lib/split/dashboard/pagination_helpers.rb in split-3.3.0 vs lib/split/dashboard/pagination_helpers.rb in split-3.3.1
- old
+ new
@@ -23,10 +23,10 @@
html << ellipsis_tag if show_first_ellipsis_tag?
html << prev_page_tag if show_prev_page_tag?
html << current_page_tag
html << next_page_tag if show_next_page_tag?(collection)
html << ellipsis_tag if show_last_ellipsis_tag?(collection)
- html << last_page_tagcollection if show_last_page_tag?(collection)
+ html << last_page_tag(collection) if show_last_page_tag?(collection)
html.join
end
private