Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/8d2fc4945b0635baf9a3a2e1e0d25c0149108bc6
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
23 additions and
7 deletions
@ -85,19 +85,27 @@ define(
var start = Moment ( element . get ( 'airDate' ) ) ;
var end = Moment ( element . get ( 'end' ) ) ;
var statusLevel = 'primary' ;
if ( currentTime . isAfter ( start ) && currentTime . isBefore ( end ) ) {
return 'warning' ;
statusLevel = 'warning' ;
}
else if ( start . isBefore ( currentTime ) && ! hasFile ) {
statusLevel = 'danger' ;
}
if ( start . isBefore ( currentTime ) && ! hasFile ) {
return 'danger' ;
else if ( hasFile ) {
statusLevel = 'success ';
}
if ( hasFile ) {
return 'success' ;
var test = currentTime . startOf ( 'day' ) . format ( 'LLLL' ) ;
if ( end . isBefore ( currentTime . startOf ( 'day' ) ) ) {
statusLevel += ' past'
}
return 'primary' ;
return statusLevel ;
}
} ) ;
} ) ;
@ -26,6 +26,14 @@
h2 {
font-size : 17.5px;
}
.fc-state-highlight {
background: #f1f1f1;
}
.past {
opacity: 0.8;
}
}
.event {
@ -39,7 +39,7 @@ define(
tooltip = 'Episode has not aired' ;
}
}
this . $el . html ( '<i class="{0}" title="{1}"/>' . format ( icon , tooltip ) ) ;
}