From d13f4326b5c5130a818a3d936a00c555248783d0 Mon Sep 17 00:00:00 2001 From: bill bittner Date: Fri, 2 Feb 2018 17:20:08 -0800 Subject: [PATCH] fixed issue with channel page navigation --- react/components/ChannelClaimsDisplay/index.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/react/components/ChannelClaimsDisplay/index.js b/react/components/ChannelClaimsDisplay/index.js index 6603cc2e..3a698835 100644 --- a/react/components/ChannelClaimsDisplay/index.js +++ b/react/components/ChannelClaimsDisplay/index.js @@ -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 (