mirror of
https://github.com/Readarr/Readarr
synced 2026-05-05 11:10:37 +02:00
Fixed: Jump bar on series page not showing when window is made wider
(cherry picked from commit 0cb8d93069d6310abd39ee2fe73219e17aa83fe6)
This commit is contained in:
parent
565fb77713
commit
cbf2f0f4fb
1 changed files with 3 additions and 1 deletions
|
|
@ -100,7 +100,9 @@ class PageJumpBar extends Component {
|
||||||
// Listeners
|
// Listeners
|
||||||
|
|
||||||
onMeasure = ({ height }) => {
|
onMeasure = ({ height }) => {
|
||||||
this.setState({ height });
|
if (height > 0) {
|
||||||
|
this.setState({ height });
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
//
|
//
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue