mirror of
https://github.com/Readarr/Readarr
synced 2025-12-12 03:13:54 +01:00
Fixed: Filter menu disabled when no items shown
This commit is contained in:
parent
b5ae7eed87
commit
0c7417ee91
2 changed files with 3 additions and 1 deletions
|
|
@ -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…
Reference in a new issue