Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/6838298dbc98994686c6e0448cb9ab0e5891467b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
3 changed files with
21 additions and
5 deletions
@ -1,6 +1,8 @@
"use strict" ;
define ( [ 'app' ] , function ( ) {
NzbDrone . Cells . RelativeDateCell = Backgrid . Cell . extend ( {
define ( [ 'app' , 'Cells/NzbDroneCell' ] , function ( ) {
NzbDrone . Cells . RelativeDateCell = NzbDrone . Cells . NzbDroneCell . extend ( {
className : 'relative-date-cell' ,
render : function ( ) {
@ -5,3 +5,15 @@
.episode-title-cell {
.btn-link;
}
.air-date-cell {
width: 100px;
}
.relative-date-cell {
width: 150px;
}
.quality-cell{
width: 130px;
}
@ -74,9 +74,11 @@ define(['app', 'Series/SeriesModel'], function () {
json [ name ] = _ . bind ( this . mutators [ name ] , this ) ( ) ;
}
} , this ) ) ;
json . series = this . get ( 'series' ) . toJSON ( ) ;
if ( this . has ( 'series' ) )
{
json . series = this . get ( 'series' ) . toJSON ( ) ;
}
return json ;
} ,