fixed issue with channel page navigation
This commit is contained in:
parent
fbe25e4aa1
commit
d13f4326b5
1 changed files with 2 additions and 2 deletions
|
@ -48,11 +48,11 @@ class ChannelClaimsDisplay extends React.Component {
|
|||
}
|
||||
showPreviousResultsPage () {
|
||||
const previousPage = parseInt(this.state.currentPage) - 1;
|
||||
this.updateClaimsData(previousPage);
|
||||
this.updateClaimsData(this.props.name, this.props.longId, previousPage);
|
||||
}
|
||||
showNextResultsPage () {
|
||||
const nextPage = parseInt(this.state.currentPage) + 1;
|
||||
this.updateClaimsData(nextPage);
|
||||
this.updateClaimsData(this.props.name, this.props.longId, nextPage);
|
||||
}
|
||||
render () {
|
||||
return (
|
||||
|
|
Loading…
Reference in a new issue