Fixed loading series list and custom filters

Fixed: Loading series list
Fixed: Adding new custom filter

Closes #5430
This commit is contained in:
Mark McDowall 2023-02-13 11:27:07 -08:00
parent 492c9e22ba
commit 279d3a89b6
2 changed files with 4 additions and 4 deletions

View File

@ -52,7 +52,7 @@ function SeriesIndexPoster(props: SeriesIndexPosterProps) {
path,
titleSlug,
nextAiring,
statistics,
statistics = {},
images,
} = series;

View File

@ -15,9 +15,9 @@ function createSeriesSelector() {
function createFilterBuilderPropsSelector() {
return createSelector(
(state) => state.series.items,
(series) => {
return series;
(state) => state.seriesIndex.filterBuilderProps,
(filterBuilderProps) => {
return filterBuilderProps;
}
);
}