Skip to content

Commit de63c39

Browse files
cattekinandrew
authored andcommitted
Fix Dashboard Pagination Helper typo (#541)
Resolves issue when displaying the dashboard caused by missing parenthesis is in code for the pagination helper. After this change the dashboard displays as expected.
1 parent 03eab94 commit de63c39

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/split/dashboard/pagination_helpers.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ def pagination(collection)
2525
html << current_page_tag
2626
html << next_page_tag if show_next_page_tag?(collection)
2727
html << ellipsis_tag if show_last_ellipsis_tag?(collection)
28-
html << last_page_tagcollection if show_last_page_tag?(collection)
28+
html << last_page_tag(collection) if show_last_page_tag?(collection)
2929
html.join
3030
end
3131

0 commit comments

Comments
 (0)