1
0
mirror of https://github.com/Sonarr/Sonarr.git synced 2026-04-26 22:56:23 -04:00

Fix page jump bar not rendering/rendering in the wrong order

This commit is contained in:
Mark McDowall
2019-02-27 20:56:55 -08:00
parent 6b15d7e260
commit 39e3120058
+2 -1
View File
@@ -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
);
}