Fix pagination for short list

This commit is contained in:
Pierre Burgy 2017-05-03 17:32:38 +02:00
parent 10b1cc2ece
commit c47dff45f3

View File

@ -154,7 +154,7 @@ class Pagination extends React.Component { // eslint-disable-line react/prefer-s
}
// Add next page link
if (!this.isLastPage()) {
if (!this.isLastPage() && !this.isFirstPage()) {
linksOptions.push({
value: this.props.currentPage + 1,
isActive: false,