Skip to content
This repository has been archived by the owner on Jan 16, 2018. It is now read-only.

Commit

Permalink
Casting to number not needed anymore in ClayPagination
Browse files Browse the repository at this point in the history
  • Loading branch information
Carlos Lancha committed Jan 15, 2018
1 parent 1a6d390 commit fa6eb4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/clay-pagination/src/ClayPagination.soy
Original file line number Diff line number Diff line change
Expand Up @@ -205,7 +205,7 @@
{let $endPage: $items[0].endPage /}
{let $initPage: $items[0].initPage /}

{for $page in range($initPage * 1, $endPage * 1)}
{for $page in range($initPage, $endPage)}
{delcall ClayDropdownBase.Item variant="'item'"}
{param href: $baseHref + $page /}
{param isInList: $isInList /}
Expand Down

0 comments on commit fa6eb4d

Please sign in to comment.