mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-13 18:27:08 -07:00
Fixed: Display last/next monitored albums for artists
This commit is contained in:
parent
eb04673040
commit
a52c6f6f41
8 changed files with 17 additions and 18 deletions
|
@ -11,7 +11,7 @@ function createArtistAlbumsSelector(artistId: number) {
|
|||
const { isFetching, isPopulated, error, items } = albums;
|
||||
|
||||
const filteredAlbums = items.filter(
|
||||
(album) => album.artist.artistMetadataId === artist.artistMetadataId
|
||||
(album) => album.artistId === artist.id
|
||||
);
|
||||
|
||||
return {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue