Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Readarr/commit/f9d5fa37a348223ad4e51b4a97866a62bf3c42a2
You should set ROOT_URL correctly, otherwise the web may not work correctly.
4 changed files with
7 additions and
1 deletions
@ -63,6 +63,7 @@ function ProviderFieldFormGroup(props) {
label ,
helpText ,
helpLink ,
placeholder ,
value ,
type ,
advanced ,
@ -95,6 +96,7 @@ function ProviderFieldFormGroup(props) {
label = { label }
helpText = { helpText }
helpLink = { helpLink }
placeholder = { placeholder }
value = { value }
values = { getSelectValues ( selectOptions ) }
errors = { errors }
@ -120,6 +122,7 @@ ProviderFieldFormGroup.propTypes = {
label : PropTypes . string . isRequired ,
helpText : PropTypes . string ,
helpLink : PropTypes . string ,
placeholder : PropTypes . string ,
value : PropTypes . any ,
type : PropTypes . string . isRequired ,
advanced : PropTypes . bool . isRequired ,
@ -23,6 +23,7 @@ namespace NzbDrone.Core.Annotations
public string Section { get ; set ; }
public HiddenType Hidden { get ; set ; }
public PrivacyLevel Privacy { get ; set ; }
public string Placeholder { get ; set ; }
}
[AttributeUsage(AttributeTargets.Property | AttributeTargets.Field, AllowMultiple = false)]
@ -18,6 +18,7 @@ namespace Readarr.Http.ClientSchema
public string SelectOptionsProviderAction { get ; set ; }
public string Section { get ; set ; }
public string Hidden { get ; set ; }
public string Placeholder { get ; set ; }
public Field Clone ( )
{
@ -103,7 +103,8 @@ namespace Readarr.Http.ClientSchema
Order = fieldAttribute . Order ,
Advanced = fieldAttribute . Advanced ,
Type = fieldAttribute . Type . ToString ( ) . FirstCharToLower ( ) ,
Section = fieldAttribute . Section
Section = fieldAttribute . Section ,
Placeholder = fieldAttribute . Placeholder
} ;
if ( fieldAttribute . Type = = FieldType . Select )