mirror of
https://github.com/lidarr/Lidarr
synced 2024-12-22 07:42:28 +00:00
Fixed: Jump bar on artists page not showing when window is made wider
(cherry picked from commit 0cb8d93069d6310abd39ee2fe73219e17aa83fe6) Closes #2590
This commit is contained in:
parent
bfb86dafc9
commit
e1ebaaee15
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