dxc-technology / halstack-react

Library of components for building SPAs with React and Halstack Design System
https://developer.dxc.com/halstack/
Apache License 2.0
15 stars 14 forks source link

Paginator fails when itemsPerPage is 0 and showGoToPage is true #1619

Closed raquelarrojo closed 1 year ago

raquelarrojo commented 1 year ago

Describe the bug Paginator fails when itemsPerPage is 0 and showGoToPage is true, since it is making this operation totalItems / itemsPerPage. The result of this operation (totalItems / 0) is Infinity. So when it is trying to make Array(Infinity) it fails.

Expected behaviour It should not fail and it should be shown like this:

image

Screenshots image