mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-08 05:51:47 -07:00
Fixed: Virtual tables/grids on Mobile
This commit is contained in:
parent
b5339b75ff
commit
6ff5e6337b
4 changed files with 4 additions and 4 deletions
|
@ -288,7 +288,7 @@ class ArtistIndexBanners extends Component {
|
|||
return (
|
||||
<Measure onMeasure={this.onMeasure}>
|
||||
<WindowScroller
|
||||
scrollElement={isSmallScreen ? null : this._contentBodyNode}
|
||||
scrollElement={isSmallScreen ? undefined : this._contentBodyNode}
|
||||
onScroll={onScroll}
|
||||
>
|
||||
{({ height, isScrolling }) => {
|
||||
|
|
|
@ -232,7 +232,7 @@ class ArtistIndexOverviews extends Component {
|
|||
return (
|
||||
<Measure onMeasure={this.onMeasure}>
|
||||
<WindowScroller
|
||||
scrollElement={isSmallScreen ? null : this._contentBodyNode}
|
||||
scrollElement={isSmallScreen ? undefined : this._contentBodyNode}
|
||||
onScroll={onScroll}
|
||||
>
|
||||
{({ height, isScrolling }) => {
|
||||
|
|
|
@ -288,7 +288,7 @@ class ArtistIndexPosters extends Component {
|
|||
return (
|
||||
<Measure onMeasure={this.onMeasure}>
|
||||
<WindowScroller
|
||||
scrollElement={isSmallScreen ? null : this._contentBodyNode}
|
||||
scrollElement={isSmallScreen ? undefined : this._contentBodyNode}
|
||||
onScroll={onScroll}
|
||||
>
|
||||
{({ height, isScrolling }) => {
|
||||
|
|
|
@ -102,7 +102,7 @@ class VirtualTable extends Component {
|
|||
return (
|
||||
<Measure onMeasure={this.onMeasure}>
|
||||
<WindowScroller
|
||||
scrollElement={isSmallScreen ? null : this._contentBodyNode}
|
||||
scrollElement={isSmallScreen ? undefined : this._contentBodyNode}
|
||||
onScroll={onScroll}
|
||||
>
|
||||
{({ height, isScrolling }) => {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue