Set initial count on playlist list (#180)
- Allows for easier infinite scrolling to end of list
This commit is contained in:
parent
e9d1e4a597
commit
287fbab29a
1 changed files with 4 additions and 1 deletions
|
|
@ -36,7 +36,10 @@ const PlaylistListRoute = () => {
|
||||||
itemCount={itemCount}
|
itemCount={itemCount}
|
||||||
tableRef={tableRef}
|
tableRef={tableRef}
|
||||||
/>
|
/>
|
||||||
<PlaylistListContent tableRef={tableRef} />
|
<PlaylistListContent
|
||||||
|
itemCount={itemCount}
|
||||||
|
tableRef={tableRef}
|
||||||
|
/>
|
||||||
</AnimatedPage>
|
</AnimatedPage>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|
|
||||||
Reference in a new issue