Fixed: Undefined statistics and season folder column width on series index
This commit is contained in:
parent
97ee24507f
commit
a6bce8a64a
|
@ -63,11 +63,11 @@ function SeriesIndexPoster(props: SeriesIndexPosterProps) {
|
||||||
} = series;
|
} = series;
|
||||||
|
|
||||||
const {
|
const {
|
||||||
seasonCount,
|
seasonCount = 0,
|
||||||
episodeCount,
|
episodeCount = 0,
|
||||||
episodeFileCount,
|
episodeFileCount = 0,
|
||||||
totalEpisodeCount,
|
totalEpisodeCount = 0,
|
||||||
sizeOnDisk,
|
sizeOnDisk = 0,
|
||||||
} = statistics;
|
} = statistics;
|
||||||
|
|
||||||
const dispatch = useDispatch();
|
const dispatch = useDispatch();
|
||||||
|
|
|
@ -93,7 +93,7 @@
|
||||||
.seasonFolder {
|
.seasonFolder {
|
||||||
composes: cell;
|
composes: cell;
|
||||||
|
|
||||||
width: 150px;
|
flex: 0 0 150px;
|
||||||
}
|
}
|
||||||
|
|
||||||
.episodeProgress,
|
.episodeProgress,
|
||||||
|
|
Loading…
Reference in New Issue