mirror of
https://github.com/Radarr/Radarr
synced 2025-01-02 13:24:33 +00:00
New: Smart Filter Options for Studios in MovieIndex
This commit is contained in:
parent
ed24cd5b52
commit
fbc2566f70
1 changed files with 13 additions and 1 deletions
|
@ -187,7 +187,19 @@ export const defaultState = {
|
||||||
{
|
{
|
||||||
name: 'studio',
|
name: 'studio',
|
||||||
label: 'Studio',
|
label: 'Studio',
|
||||||
type: filterBuilderTypes.STRING
|
type: filterBuilderTypes.ARRAY,
|
||||||
|
optionsSelector: function(items) {
|
||||||
|
const tagList = items.reduce((acc, movie) => {
|
||||||
|
acc.push({
|
||||||
|
id: movie.studio,
|
||||||
|
name: movie.studio
|
||||||
|
});
|
||||||
|
|
||||||
|
return acc;
|
||||||
|
}, []);
|
||||||
|
|
||||||
|
return tagList.sort(sortByName);
|
||||||
|
}
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
name: 'qualityProfileId',
|
name: 'qualityProfileId',
|
||||||
|
|
Loading…
Reference in a new issue