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

Fixed: Filter menu disabled when no items shown

pull/455/head
Qstick 7 years ago
parent b5ae7eed87
commit 0c7417ee91

@ -216,7 +216,7 @@ class ArtistIndex extends Component {
const ViewComponent = getViewComponent(view);
const isLoaded = !error && isPopulated && !!items.length && contentBody;
const hasNoArtist = !items.length;
const hasNoArtist = !totalItems;
return (
<PageContent>

@ -16,4 +16,6 @@
.isDisabled {
color: $disabledColor;
pointer-events: none;
}

Loading…
Cancel
Save