mirror of
https://github.com/Radarr/Radarr.git
synced 2025-04-24 14:37:07 -04:00
Revert "New: Change Add Movie Monitor Selection from Dropdown to Checkbox (#5319)"
This reverts commit 897bfa04a6
.
This commit is contained in:
parent
0e5f43e139
commit
67ebf49b21
4 changed files with 9 additions and 17 deletions
|
@ -96,9 +96,7 @@ class AddNewMovieModalContent extends Component {
|
|||
|
||||
<Form>
|
||||
<FormGroup>
|
||||
<FormLabel>
|
||||
{translate('RootFolder')}
|
||||
</FormLabel>
|
||||
<FormLabel>{translate('RootFolder')}</FormLabel>
|
||||
|
||||
<FormInputGroup
|
||||
type={inputTypes.ROOT_FOLDER_SELECT}
|
||||
|
@ -119,22 +117,19 @@ class AddNewMovieModalContent extends Component {
|
|||
|
||||
<FormGroup>
|
||||
<FormLabel>
|
||||
{translate('Monitored')}
|
||||
{translate('Monitor')}
|
||||
</FormLabel>
|
||||
|
||||
<FormInputGroup
|
||||
type={inputTypes.CHECK}
|
||||
type={inputTypes.MOVIE_MONITORED_SELECT}
|
||||
name="monitor"
|
||||
helpText={translate('MonitoredHelpText')}
|
||||
onChange={onInputChange}
|
||||
{...monitor}
|
||||
/>
|
||||
</FormGroup>
|
||||
|
||||
<FormGroup>
|
||||
<FormLabel>
|
||||
{translate('MinimumAvailability')}
|
||||
</FormLabel>
|
||||
<FormLabel>{translate('MinimumAvailability')}</FormLabel>
|
||||
|
||||
<FormInputGroup
|
||||
type={inputTypes.AVAILABILITY_SELECT}
|
||||
|
@ -145,9 +140,7 @@ class AddNewMovieModalContent extends Component {
|
|||
</FormGroup>
|
||||
|
||||
<FormGroup>
|
||||
<FormLabel>
|
||||
{translate('QualityProfile')}
|
||||
</FormLabel>
|
||||
<FormLabel>{translate('QualityProfile')}</FormLabel>
|
||||
|
||||
<FormInputGroup
|
||||
type={inputTypes.QUALITY_PROFILE_SELECT}
|
||||
|
@ -158,9 +151,7 @@ class AddNewMovieModalContent extends Component {
|
|||
</FormGroup>
|
||||
|
||||
<FormGroup>
|
||||
<FormLabel>
|
||||
{translate('Tags')}
|
||||
</FormLabel>
|
||||
<FormLabel>{translate('Tags')}</FormLabel>
|
||||
|
||||
<FormInputGroup
|
||||
type={inputTypes.TAG}
|
||||
|
|
|
@ -30,7 +30,7 @@ export const defaultState = {
|
|||
|
||||
defaults: {
|
||||
rootFolderPath: '',
|
||||
monitor: true,
|
||||
monitor: 'true',
|
||||
qualityProfileId: 0,
|
||||
minimumAvailability: 'announced',
|
||||
tags: []
|
||||
|
|
|
@ -14,7 +14,7 @@ function getNewMovie(movie, payload) {
|
|||
};
|
||||
|
||||
movie.addOptions = addOptions;
|
||||
movie.monitored = monitor;
|
||||
movie.monitored = monitor === 'true';
|
||||
movie.qualityProfileId = qualityProfileId;
|
||||
movie.minimumAvailability = minimumAvailability;
|
||||
movie.rootFolderPath = rootFolderPath;
|
||||
|
|
|
@ -416,6 +416,7 @@
|
|||
"MissingMonitoredAndConsideredAvailable": "Missing, Monitored and considered Available",
|
||||
"MissingNotMonitored": "Missing, not Monitored",
|
||||
"Mode": "Mode",
|
||||
"Monitor": "Monitor",
|
||||
"Monitored": "Monitored",
|
||||
"MonitoredHelpText": "Download movie if available",
|
||||
"MonitoredOnly": "Monitored Only",
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue