jw-react-pagination
jw-react-pagination copied to clipboard
keep pagination displayed forever?
Hi This is a good tool but can you keep pagination displayed forever? Currently driving data to less than 1 page will automatically hide.
Hi @HsienW
I dug through the source code a bit and found this on line 99 - 101
if (!pager.pages || pager.pages.length <= 1) { // don't display pager if there is only 1 page return null; }
If you comment it out it will still display the pager even if there is less than 2 pages.