diff --git a/frontend/src/Components/Page/PageJumpBar.js b/frontend/src/Components/Page/PageJumpBar.js index f555d5426..41df52dfc 100644 --- a/frontend/src/Components/Page/PageJumpBar.js +++ b/frontend/src/Components/Page/PageJumpBar.js @@ -29,7 +29,8 @@ class PageJumpBar extends Component { shouldComponentUpdate(nextProps, nextState) { return ( nextProps.items !== this.props.items || - nextState.height !== this.state.height + nextState.height !== this.state.height || + nextState.visibleItems !== this.state.visibleItems ); }