Fix for infinite pagination when count is zero

This commit is contained in:
Andre Noberto 2019-08-26 09:58:46 -03:00
parent 8151c6b9c3
commit 857cbbc848

View File

@ -12,7 +12,7 @@ import styles from './styles.scss';
/* eslint-disable jsx-a11y/anchor-is-valid */
class GlobalPagination extends React.Component {
getLastPageNumber = () => Math.ceil(this.props.count / this.props.params._limit);
getLastPageNumber = () => Math.ceil(this.props.count / this.props.params._limit) || 1;
handleDotsClick = (e) => e.preventDefault();