react-js-pagination
react-js-pagination copied to clipboard
How to disable "last Page" Page component when there is only 1 page?
"paginator" forcefully sets .current_page
property to 1 if the value is less then 1, but leaves the .total_pages
at 0.
https://github.com/deoxxa/paginator/blob/master/index.js#L31
soo, this is never true
when there is less then 1 page of results: https://github.com/vayser/react-js-pagination/blob/master/src/components/Pagination.js#L185