mirror of
https://github.com/Readarr/Readarr
synced 2026-04-19 19:31:01 +02:00
parent
cee1b33c60
commit
ff479ad170
2 changed files with 1 additions and 2 deletions
|
|
@ -85,7 +85,7 @@ class RootFolderSelectInputConnector extends Component {
|
|||
onChange
|
||||
} = this.props;
|
||||
|
||||
if (!value || !_.some(values, (v) => v.hasOwnProperty(value)) || value === ADD_NEW_KEY) {
|
||||
if (!value || !_.some(values, (v) => v.key === value) || value === ADD_NEW_KEY) {
|
||||
const defaultValue = values[0];
|
||||
|
||||
if (defaultValue.key === ADD_NEW_KEY) {
|
||||
|
|
|
|||
|
|
@ -5,7 +5,6 @@ namespace NzbDrone.Core.ImportLists
|
|||
public class ImportListDefinition : ProviderDefinition
|
||||
{
|
||||
public bool EnableAutomaticAdd { get; set; }
|
||||
|
||||
public bool ShouldMonitor { get; set; }
|
||||
public int ProfileId { get; set; }
|
||||
public int LanguageProfileId { get; set; }
|
||||
|
|
|
|||
Loading…
Reference in a new issue