mirror of
https://github.com/Lidarr/Lidarr
synced 2025-12-16 13:22:57 +01:00
Fixed: Move Artist modal shows incorrect path for multiple artist move
This commit is contained in:
parent
15672298c6
commit
b9f625a0a7
1 changed files with 2 additions and 2 deletions
|
|
@ -36,7 +36,7 @@ function MoveArtistModal(props) {
|
|||
onModalClose={onSavePress}
|
||||
>
|
||||
<ModalContent
|
||||
showCloseButton={false}
|
||||
showCloseButton={true}
|
||||
onModalClose={onSavePress}
|
||||
>
|
||||
<ModalHeader>
|
||||
|
|
@ -46,7 +46,7 @@ function MoveArtistModal(props) {
|
|||
<ModalBody>
|
||||
{
|
||||
destinationRootFolder ?
|
||||
`Would you like to move the artist folders to ${destinationPath}'?` :
|
||||
`Would you like to move the artist folders to '${destinationRootFolder}'?` :
|
||||
`Would you like to move the artist files from '${originalPath}' to '${destinationPath}'?`
|
||||
}
|
||||
</ModalBody>
|
||||
|
|
|
|||
Loading…
Reference in a new issue