1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-10-03 22:57:18 +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:
Mark McDowall 2022-01-13 17:54:04 -08:00 committed by Qstick
parent 6e0ed36e9f
commit ac9d6cbf0a

View File

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