mirror of
https://github.com/lidarr/lidarr.git
synced 2025-07-16 10:03:51 -07:00
Fixed: Error refreshing page in Activity/Wanted
This commit is contained in:
parent
2639374243
commit
ddef74edde
10 changed files with 65 additions and 21 deletions
|
@ -14,10 +14,13 @@ import History from './History';
|
|||
function createMapStateToProps() {
|
||||
return createSelector(
|
||||
(state) => state.history,
|
||||
(state) => state.artist,
|
||||
(state) => state.albums,
|
||||
(state) => state.tracks,
|
||||
(history, albums, tracks) => {
|
||||
(history, artist, albums, tracks) => {
|
||||
return {
|
||||
isArtistFetching: artist.isFetching,
|
||||
isArtistPopulated: artist.isPopulated,
|
||||
isAlbumsFetching: albums.isFetching,
|
||||
isAlbumsPopulated: albums.isPopulated,
|
||||
albumsError: albums.error,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue