mirror of
https://github.com/Sonarr/Sonarr
synced 2025-01-03 13:45:02 +00:00
Fixed: Jump bar on series page not showing when window is made wider
Closes #4837
This commit is contained in:
parent
6131a99497
commit
0cb8d93069
1 changed files with 3 additions and 1 deletions
|
@ -100,7 +100,9 @@ class PageJumpBar extends Component {
|
|||
// Listeners
|
||||
|
||||
onMeasure = ({ height }) => {
|
||||
this.setState({ height });
|
||||
if (height > 0) {
|
||||
this.setState({ height });
|
||||
}
|
||||
}
|
||||
|
||||
//
|
||||
|
|
Loading…
Reference in a new issue