Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/Prowlarr/commit/fe7bf8ec9ec46daac7ca3fdf72a03f4029e231e8 You should set ROOT_URL correctly, otherwise the web may not work correctly.

Added: Monitor Toggle on Movies Editor Page ()

pull/2/head
Qstick 7 years ago committed by Tim Turner
parent 0db74fa583
commit fe7bf8ec9e

@ -6,6 +6,7 @@ var EmptyView = require('../Index/EmptyView');
var FullMovieCollection = require ('../FullMovieCollection');
var MoviesCollection = require('../MoviesCollection');
var MovieTitleCell = require('../../Cells/MovieTitleCell');
var MovieMonitoredCell = require('../../Cells/ToggleCell');
var DownloadedQualityCell = require('../../Cells/DownloadedQualityCell');
var ProfileCell = require('../../Cells/ProfileCell');
var SelectAllCell = require('../../Cells/SelectAllCell');
@ -46,6 +47,15 @@ module.exports = Marionette.Layout.extend({
headerCell : 'select-all',
sortable : false
},
{
name : 'monitored',
label : '',
cell : MovieMonitoredCell,
trueClass : 'icon-sonarr-monitored',
falseClass : 'icon-sonarr-unmonitored',
tooltip : 'Toggle movie monitored status',
sortable : false
},
{
name : 'title',
label : 'Title',

Loading…
Cancel
Save