Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Lidarr/commit/0ee82feab7e33b6aece660deeae769285684df5b
You should set ROOT_URL correctly, otherwise the web may not work correctly.
2 changed files with
22 additions and
2 deletions
@ -2,11 +2,20 @@
define (
[
'marionette' ,
'Mixins/AsModelBoundView'
'Mixins/AsModelBoundView' ,
'Mixins/AutoComplete'
] , function ( Marionette , AsModelBoundView ) {
var view = Marionette . ItemView . extend ( {
template : 'Settings/MediaManagement/FileManagement/FileManagementViewTemplate'
template : 'Settings/MediaManagement/FileManagement/FileManagementViewTemplate' ,
ui : {
recyclingBin : '.x-path'
} ,
onShow : function ( ) {
this . ui . recyclingBin . autoComplete ( '/directories' ) ;
}
} ) ;
return AsModelBoundView . call ( view ) ;
@ -40,4 +40,15 @@
< / span >
< / div >
< / div >
< div class = "control-group" >
< label class = "control-label" > Recycling Bin< / label >
< div class = "controls" >
< input type = "text" name = "recycleBin" class = "x-path" / >
< span class = "help-inline" >
< i class = "icon-nd-form-info" title = "Episode files will go here when deleted instead of being permanently deleted" / >
< / span >
< / div >
< / div >
< / fieldset >