|
|
@ -56,7 +56,6 @@ class AddNewArtistModalContent extends Component {
|
|
|
|
render() {
|
|
|
|
render() {
|
|
|
|
const {
|
|
|
|
const {
|
|
|
|
artistName,
|
|
|
|
artistName,
|
|
|
|
// year,
|
|
|
|
|
|
|
|
overview,
|
|
|
|
overview,
|
|
|
|
images,
|
|
|
|
images,
|
|
|
|
isAdding,
|
|
|
|
isAdding,
|
|
|
@ -64,8 +63,9 @@ class AddNewArtistModalContent extends Component {
|
|
|
|
monitor,
|
|
|
|
monitor,
|
|
|
|
qualityProfileId,
|
|
|
|
qualityProfileId,
|
|
|
|
languageProfileId,
|
|
|
|
languageProfileId,
|
|
|
|
// seriesType,
|
|
|
|
|
|
|
|
albumFolder,
|
|
|
|
albumFolder,
|
|
|
|
|
|
|
|
primaryAlbumTypes,
|
|
|
|
|
|
|
|
secondaryAlbumTypes,
|
|
|
|
tags,
|
|
|
|
tags,
|
|
|
|
showLanguageProfile,
|
|
|
|
showLanguageProfile,
|
|
|
|
isSmallScreen,
|
|
|
|
isSmallScreen,
|
|
|
@ -167,6 +167,28 @@ class AddNewArtistModalContent extends Component {
|
|
|
|
/>
|
|
|
|
/>
|
|
|
|
</FormGroup>
|
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormGroup>
|
|
|
|
|
|
|
|
<FormLabel>Primary Album Types</FormLabel>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormInputGroup
|
|
|
|
|
|
|
|
type={inputTypes.TEXT}
|
|
|
|
|
|
|
|
name="primaryAlbumTypes"
|
|
|
|
|
|
|
|
onChange={onInputChange}
|
|
|
|
|
|
|
|
{...primaryAlbumTypes}
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormGroup>
|
|
|
|
|
|
|
|
<FormLabel>Secondary Album Types</FormLabel>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
<FormInputGroup
|
|
|
|
|
|
|
|
type={inputTypes.TEXT}
|
|
|
|
|
|
|
|
name="secondaryAlbumTypes"
|
|
|
|
|
|
|
|
onChange={onInputChange}
|
|
|
|
|
|
|
|
{...secondaryAlbumTypes}
|
|
|
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
</FormGroup>
|
|
|
|
|
|
|
|
|
|
|
|
<FormGroup>
|
|
|
|
<FormGroup>
|
|
|
|
<FormLabel>Tags</FormLabel>
|
|
|
|
<FormLabel>Tags</FormLabel>
|
|
|
|
|
|
|
|
|
|
|
@ -213,7 +235,6 @@ class AddNewArtistModalContent extends Component {
|
|
|
|
|
|
|
|
|
|
|
|
AddNewArtistModalContent.propTypes = {
|
|
|
|
AddNewArtistModalContent.propTypes = {
|
|
|
|
artistName: PropTypes.string.isRequired,
|
|
|
|
artistName: PropTypes.string.isRequired,
|
|
|
|
// year: PropTypes.number.isRequired,
|
|
|
|
|
|
|
|
overview: PropTypes.string,
|
|
|
|
overview: PropTypes.string,
|
|
|
|
images: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
|
|
images: PropTypes.arrayOf(PropTypes.object).isRequired,
|
|
|
|
isAdding: PropTypes.bool.isRequired,
|
|
|
|
isAdding: PropTypes.bool.isRequired,
|
|
|
@ -222,8 +243,9 @@ AddNewArtistModalContent.propTypes = {
|
|
|
|
monitor: PropTypes.object.isRequired,
|
|
|
|
monitor: PropTypes.object.isRequired,
|
|
|
|
qualityProfileId: PropTypes.object,
|
|
|
|
qualityProfileId: PropTypes.object,
|
|
|
|
languageProfileId: PropTypes.object,
|
|
|
|
languageProfileId: PropTypes.object,
|
|
|
|
// seriesType: PropTypes.object.isRequired,
|
|
|
|
|
|
|
|
albumFolder: PropTypes.object.isRequired,
|
|
|
|
albumFolder: PropTypes.object.isRequired,
|
|
|
|
|
|
|
|
primaryAlbumTypes: PropTypes.object.isRequired,
|
|
|
|
|
|
|
|
secondaryAlbumTypes: PropTypes.object.isRequired,
|
|
|
|
tags: PropTypes.object.isRequired,
|
|
|
|
tags: PropTypes.object.isRequired,
|
|
|
|
showLanguageProfile: PropTypes.bool.isRequired,
|
|
|
|
showLanguageProfile: PropTypes.bool.isRequired,
|
|
|
|
isSmallScreen: PropTypes.bool.isRequired,
|
|
|
|
isSmallScreen: PropTypes.bool.isRequired,
|
|
|
|