Fixed loading series list and custom filters
Fixed: Loading series list Fixed: Adding new custom filter Closes #5430
This commit is contained in:
parent
492c9e22ba
commit
279d3a89b6
|
@ -52,7 +52,7 @@ function SeriesIndexPoster(props: SeriesIndexPosterProps) {
|
|||
path,
|
||||
titleSlug,
|
||||
nextAiring,
|
||||
statistics,
|
||||
statistics = {},
|
||||
images,
|
||||
} = series;
|
||||
|
||||
|
|
|
@ -15,9 +15,9 @@ function createSeriesSelector() {
|
|||
|
||||
function createFilterBuilderPropsSelector() {
|
||||
return createSelector(
|
||||
(state) => state.series.items,
|
||||
(series) => {
|
||||
return series;
|
||||
(state) => state.seriesIndex.filterBuilderProps,
|
||||
(filterBuilderProps) => {
|
||||
return filterBuilderProps;
|
||||
}
|
||||
);
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue