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:
parent
2c492fdb72
commit
d728b0c4b2
1 changed files with 1 additions and 1 deletions
|
@ -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;
|
||||
|
|
Loading…
Reference in a new issue