Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/be61fb40fda5471a93427c92f47ebe80b9281693
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
24 additions and
33 deletions
@ -18,47 +18,31 @@
border-radius : 4px ;
}
. queue {
composes : legendItemColor ;
background-color : $ queueColor ;
}
. continuing {
composes : legendItemColor ;
background-color : $ primaryColor ;
}
. availNotMonitored {
. disabled {
composes : legendItemColor ;
background-color : $ darkGray ;
}
. en d ed {
. enabled {
composes : legendItemColor ;
background-color : $ successColor ;
}
. missingMonitor ed {
. redirected {
composes : legendItemColor ;
background-color : $ dangerColor ;
& : global ( . colorImpaired ) {
background : repeating-linear-gradient ( 90deg , color ( $ dangerColor shade ( 5 % ) ) , color ( $ dangerColor shade ( 5 % ) ) 5px , color ( $ dangerColor shade ( 15 % ) ) 5px , color ( $ dangerColor shade ( 15 % ) ) 10px ) ;
}
background-color : $ infoColor ;
}
. missingUnmonitored {
. error {
composes : legendItemColor ;
background-color : $ warning Color;
background-color : $ danger Color;
& : global ( . colorImpaired ) {
background : repeating-linear-gradient ( 45deg, $ warningColor , $ warningColor 5px , color ( $ warningColor tint ( 15 % ) ) 5px , color ( $ warningColor tint ( 15 % ) ) 10px ) ;
background : repeating-linear-gradient ( 90deg, color ( $ dangerColor shade ( 5 % ) ) , color ( $ dangerColor shade ( 5 % ) ) 5px , color ( $ dangerColor shade ( 15 % ) ) 5px , color ( $ dangerColor shade ( 15 % ) ) 10px ) ;
}
}
@ -10,15 +10,15 @@ class IndexerIndexFooter extends PureComponent {
render ( ) {
const {
mov ies,
ind exer s,
colorImpairedMode
} = this . props ;
const count = mov ies. length ;
const count = ind exer s. length ;
let enabled = 0 ;
let torrent = 0 ;
mov ies. forEach ( ( s ) => {
ind exer s. forEach ( ( s ) => {
if ( s . enable ) {
enabled += 1 ;
@ -33,14 +33,21 @@ class IndexerIndexFooter extends PureComponent {
< div className = { styles . footer } >
< div >
< div className = { styles . legendItem } >
< div className = { styles . en d ed} / >
< div className = { styles . en abl ed} / >
< div >
Enabled
< / d i v >
< / d i v >
< div className = { styles . legendItem } >
< div className = { styles . availNotMonitored } / >
< div className = { styles . redirected } / >
< div >
Enabled , Redirected
< / d i v >
< / d i v >
< div className = { styles . legendItem } >
< div className = { styles . disabled } / >
< div >
Disabled
< / d i v >
@ -48,7 +55,7 @@ class IndexerIndexFooter extends PureComponent {
< div className = { styles . legendItem } >
< div className = { classNames (
styles . missingMonitored ,
styles . error ,
colorImpairedMode && 'colorImpaired'
) }
/ >
@ -89,7 +96,7 @@ class IndexerIndexFooter extends PureComponent {
}
IndexerIndexFooter . propTypes = {
mov ies: PropTypes . arrayOf ( PropTypes . object ) . isRequired ,
ind exer s: PropTypes . arrayOf ( PropTypes . object ) . isRequired ,
colorImpairedMode : PropTypes . bool . isRequired
} ;
@ -29,7 +29,7 @@ function createUnoptimizedSelector() {
function createMoviesSelector ( ) {
return createDeepEqualSelector (
createUnoptimizedSelector ( ) ,
( mov ies) => mov ies
( ind exer s) => ind exer s
) ;
}
@ -37,9 +37,9 @@ function createMapStateToProps() {
return createSelector (
createMoviesSelector ( ) ,
createUISettingsSelector ( ) ,
( mov ies, uiSettings ) => {
( ind exer s, uiSettings ) => {
return {
mov ies,
ind exer s,
colorImpairedMode : uiSettings . enableColorImpairedMode
} ;
}