React router #343
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…
Add table
Reference in a new issue