Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/386315ad2771a8737cc06c65275746db61ad353c You should set ROOT_URL correctly, otherwise the web may not work correctly.

Fixed: Return null if no height on discover/list grid

pull/2/head
Qstick 5 years ago
parent 2b518ded37
commit 386315ad27

@ -204,6 +204,10 @@ class AddListMovieOverviews extends Component {
scrollElement={isSmallScreen ? undefined : scroller}
>
{({ height, registerChild, onChildScroll, scrollTop }) => {
if (!height) {
return <div />;
}
return (
<div ref={registerChild}>
<Grid

@ -252,6 +252,10 @@ class AddListMoviePosters extends Component {
scrollElement={isSmallScreen ? undefined : scroller}
>
{({ height, registerChild, onChildScroll, scrollTop }) => {
if (!height) {
return <div />;
}
return (
<div ref={registerChild}>
<Grid

Loading…
Cancel
Save