mirror of
https://github.com/lidarr/lidarr.git
synced 2025-08-13 18:27:08 -07:00
parent
e5c5a3f91c
commit
fde276f000
10 changed files with 50 additions and 18 deletions
|
@ -41,7 +41,7 @@ function EditImportListModalContent(props) {
|
|||
enableAutomaticAdd,
|
||||
shouldMonitor,
|
||||
rootFolderPath,
|
||||
profileId,
|
||||
qualityProfileId,
|
||||
languageProfileId,
|
||||
metadataProfileId,
|
||||
fields
|
||||
|
@ -121,9 +121,9 @@ function EditImportListModalContent(props) {
|
|||
|
||||
<FormInputGroup
|
||||
type={inputTypes.QUALITY_PROFILE_SELECT}
|
||||
name="profileId"
|
||||
name="qualityProfileId"
|
||||
helpText={'Quality Profile list items should be added with'}
|
||||
{...profileId}
|
||||
{...qualityProfileId}
|
||||
onChange={onInputChange}
|
||||
/>
|
||||
</FormGroup>
|
||||
|
|
|
@ -101,7 +101,7 @@ function EditLanguageProfileModalContent(props) {
|
|||
id &&
|
||||
<div
|
||||
className={styles.deleteButtonContainer}
|
||||
title={isInUse ? 'Can\'t delete a language profile that is attached to a artist' : undefined}
|
||||
title={isInUse ? 'Can\'t delete a language profile that is attached to an artist or import list' : undefined}
|
||||
>
|
||||
<Button
|
||||
kind={kinds.DANGER}
|
||||
|
|
|
@ -107,7 +107,7 @@ function EditMetadataProfileModalContent(props) {
|
|||
id &&
|
||||
<div
|
||||
className={styles.deleteButtonContainer}
|
||||
title={isInUse ? 'Can\'t delete a metadata profile that is attached to a artist' : undefined}
|
||||
title={isInUse ? 'Can\'t delete a metadata profile that is attached to an artist or import list' : undefined}
|
||||
>
|
||||
<Button
|
||||
kind={kinds.DANGER}
|
||||
|
|
|
@ -200,7 +200,7 @@ class EditQualityProfileModalContent extends Component {
|
|||
id &&
|
||||
<div
|
||||
className={styles.deleteButtonContainer}
|
||||
title={isInUse ? 'Can\'t delete a quality profile that is attached to a artist' : undefined}
|
||||
title={isInUse ? 'Can\'t delete a quality profile that is attached to an artist or import list' : undefined}
|
||||
>
|
||||
<Button
|
||||
kind={kinds.DANGER}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue