You've already forked Sonarr
mirror of
https://github.com/Sonarr/Sonarr.git
synced 2025-11-06 09:19:38 +02:00
Fixed loading series list and custom filters
Fixed: Loading series list Fixed: Adding new custom filter Closes #5430
This commit is contained in:
@@ -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;
|
||||
}
|
||||
);
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user