mirror of
https://github.com/Prowlarr/Prowlarr.git
synced 2025-09-17 17:14:18 +02:00
@@ -213,13 +213,15 @@ export const defaultState = {
|
|||||||
{
|
{
|
||||||
name: 'studio',
|
name: 'studio',
|
||||||
label: 'Studio',
|
label: 'Studio',
|
||||||
type: filterBuilderTypes.ARRAY,
|
type: filterBuilderTypes.EXACT,
|
||||||
optionsSelector: function(items) {
|
optionsSelector: function(items) {
|
||||||
const tagList = items.reduce((acc, movie) => {
|
const tagList = items.reduce((acc, movie) => {
|
||||||
|
if (movie.studio) {
|
||||||
acc.push({
|
acc.push({
|
||||||
id: movie.studio,
|
id: movie.studio,
|
||||||
name: movie.studio
|
name: movie.studio
|
||||||
});
|
});
|
||||||
|
}
|
||||||
|
|
||||||
return acc;
|
return acc;
|
||||||
}, []);
|
}, []);
|
||||||
|
Reference in New Issue
Block a user