Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/470b57316a3bee08f924ed4e6d8b42c646c0722f
You should set ROOT_URL correctly, otherwise the web may not work correctly.
1 changed files with
8 additions and
6 deletions
@ -24,7 +24,7 @@ function HintedSelectInputSelectedValue(props) {
>
< div className = { styles . valueText } >
{
isMultiSelect &&
isMultiSelect ?
value . map ( ( key , index ) => {
const v = valuesMap [ key ] ;
return (
@ -32,26 +32,28 @@ function HintedSelectInputSelectedValue(props) {
{ v ? v . value : key }
< / L a b e l >
) ;
} )
} ) :
null
}
{
! isMultiSelect && value
isMultiSelect ? null : value
}
< / d i v >
{
hint != null && includeHint &&
hint != null && includeHint ?
< div className = { styles . hintText } >
{ hint }
< / d i v >
< / d i v > :
null
}
< / E n h a n c e d S e l e c t I n p u t S e l e c t e d V a l u e >
) ;
}
HintedSelectInputSelectedValue . propTypes = {
value : PropTypes . oneOfType ( [ PropTypes . string, PropTypes . arrayOf ( PropTypes . oneOfType ( [ PropTypes . string , PropTypes . number ] ) ) ] ) . isRequired ,
value : PropTypes . oneOfType ( [ PropTypes . number, PropTypes . string, PropTypes . arrayOf ( PropTypes . oneOfType ( [ PropTypes . string , PropTypes . number ] ) ) ] ) . isRequired ,
values : PropTypes . arrayOf ( PropTypes . object ) . isRequired ,
hint : PropTypes . string ,
isMultiSelect : PropTypes . bool . isRequired ,