Added: Adds unmonitored filter option in index and editor (#2888)

https://feathub.com/Radarr/Radarr/+40
Qstick 6 years ago committed by Tim Turner
parent fe7bf8ec9e
commit 52ce836d5c

@ -160,7 +160,14 @@ module.exports = Marionette.Layout.extend({
icon : 'icon-sonarr-monitored',
callback : this._setFilter
},
{
{
key : 'unmonitored',
title : '',
tooltip : 'UnMonitored Only',
icon : 'icon-sonarr-unmonitored',
callback : this._setFilter
},
{
key : 'missing',
title : '',
tooltip : 'Missing Only',

@ -252,6 +252,13 @@ module.exports = Marionette.Layout.extend({
icon : 'icon-sonarr-monitored',
callback : this._setFilter
},
{
key : 'unmonitored',
title : '',
tooltip : 'UnMonitored Only',
icon : 'icon-sonarr-unmonitored',
callback : this._setFilter
},
{
key : 'missing',
title : '',

@ -30,6 +30,10 @@ var filterModes = {
'monitored',
true
],
'unmonitored' : [
'monitored',
false
],
'missing' : [
'downloaded',
false

Loading…
Cancel
Save