Fixed: Jump bar on series page not showing when window is made wider

Closes #4837
pull/4846/head
Mark McDowall 3 years ago
parent 6131a99497
commit 0cb8d93069

@ -100,7 +100,9 @@ class PageJumpBar extends Component {
// Listeners
onMeasure = ({ height }) => {
this.setState({ height });
if (height > 0) {
this.setState({ height });
}
}
//

Loading…
Cancel
Save