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;
|
||||
|
||||
const {
|
||||
seasonCount,
|
||||
episodeCount,
|
||||
episodeFileCount,
|
||||
totalEpisodeCount,
|
||||
sizeOnDisk,
|
||||
seasonCount = 0,
|
||||
episodeCount = 0,
|
||||
episodeFileCount = 0,
|
||||
totalEpisodeCount = 0,
|
||||
sizeOnDisk = 0,
|
||||
} = statistics;
|
||||
|
||||
const dispatch = useDispatch();
|
||||
|
|
|
@ -93,7 +93,7 @@
|
|||
.seasonFolder {
|
||||
composes: cell;
|
||||
|
||||
width: 150px;
|
||||
flex: 0 0 150px;
|
||||
}
|
||||
|
||||
.episodeProgress,
|
||||
|
|
Loading…
Reference in New Issue