1
0
mirror of https://github.com/Radarr/Radarr.git synced 2024-09-11 12:02:35 +02:00

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

https://feathub.com/Radarr/Radarr/+40
This commit is contained in:
Qstick 2018-07-14 16:50:57 -04:00 committed by Tim Turner
parent fe7bf8ec9e
commit 52ce836d5c
3 changed files with 19 additions and 1 deletions

View File

@ -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',

View File

@ -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 : '',

View File

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