1
0
Fork 0
mirror of https://github.com/lidarr/Lidarr synced 2025-01-31 11:22:06 +00:00

Fixed: UI doesn't detect ArtistRenamingCommand is running

Co-Authored-By: Mark McDowall <markus101@users.noreply.github.com>
This commit is contained in:
Qstick 2018-09-13 22:46:39 -04:00
parent 2c492fdb72
commit d728b0c4b2

View file

@ -56,7 +56,7 @@ function createMapStateToProps() {
const isRenamingArtistCommand = findCommand(commands, { name: commandNames.RENAME_ARTIST });
const isRenamingArtist = (
isCommandExecuting(isRenamingArtistCommand) &&
isRenamingArtistCommand.body.artistId.indexOf(artist.id) > -1
isRenamingArtistCommand.body.artistIds.indexOf(artist.id) > -1
);
const isFetching = albums.isFetching || trackFiles.isFetching;