fixed issue with channel page navigation

This commit is contained in:
bill bittner 2018-02-02 17:20:08 -08:00
parent fbe25e4aa1
commit d13f4326b5

View file

@ -48,11 +48,11 @@ class ChannelClaimsDisplay extends React.Component {
} }
showPreviousResultsPage () { showPreviousResultsPage () {
const previousPage = parseInt(this.state.currentPage) - 1; const previousPage = parseInt(this.state.currentPage) - 1;
this.updateClaimsData(previousPage); this.updateClaimsData(this.props.name, this.props.longId, previousPage);
} }
showNextResultsPage () { showNextResultsPage () {
const nextPage = parseInt(this.state.currentPage) + 1; const nextPage = parseInt(this.state.currentPage) + 1;
this.updateClaimsData(nextPage); this.updateClaimsData(this.props.name, this.props.longId, nextPage);
} }
render () { render () {
return ( return (