|
|
@ -34,6 +34,7 @@ class EditAlbumModalContent extends Component {
|
|
|
|
title,
|
|
|
|
title,
|
|
|
|
artistName,
|
|
|
|
artistName,
|
|
|
|
albumType,
|
|
|
|
albumType,
|
|
|
|
|
|
|
|
statistics,
|
|
|
|
item,
|
|
|
|
item,
|
|
|
|
isSaving,
|
|
|
|
isSaving,
|
|
|
|
onInputChange,
|
|
|
|
onInputChange,
|
|
|
@ -88,6 +89,7 @@ class EditAlbumModalContent extends Component {
|
|
|
|
type={inputTypes.ALBUM_RELEASE_SELECT}
|
|
|
|
type={inputTypes.ALBUM_RELEASE_SELECT}
|
|
|
|
name="releases"
|
|
|
|
name="releases"
|
|
|
|
helpText="Change release for this album"
|
|
|
|
helpText="Change release for this album"
|
|
|
|
|
|
|
|
isDisabled={anyReleaseOk.value && statistics.trackFileCount > 0}
|
|
|
|
albumReleases={releases}
|
|
|
|
albumReleases={releases}
|
|
|
|
onChange={onInputChange}
|
|
|
|
onChange={onInputChange}
|
|
|
|
/>
|
|
|
|
/>
|
|
|
@ -120,6 +122,7 @@ EditAlbumModalContent.propTypes = {
|
|
|
|
title: PropTypes.string.isRequired,
|
|
|
|
title: PropTypes.string.isRequired,
|
|
|
|
artistName: PropTypes.string.isRequired,
|
|
|
|
artistName: PropTypes.string.isRequired,
|
|
|
|
albumType: PropTypes.string.isRequired,
|
|
|
|
albumType: PropTypes.string.isRequired,
|
|
|
|
|
|
|
|
statistics: PropTypes.object.isRequired,
|
|
|
|
item: PropTypes.object.isRequired,
|
|
|
|
item: PropTypes.object.isRequired,
|
|
|
|
isSaving: PropTypes.bool.isRequired,
|
|
|
|
isSaving: PropTypes.bool.isRequired,
|
|
|
|
onInputChange: PropTypes.func.isRequired,
|
|
|
|
onInputChange: PropTypes.func.isRequired,
|
|
|
|