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 fix when itemsPerPage is 0 #1620

Closed raquelarrojo closed 1 year ago

raquelarrojo commented 1 year ago

Checklist (Check off all the items before submitting)

Description 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.

Closes #1619