Fixed: Undefined statistics and season folder column width on series index

pull/6253/head
Bogdan 6 months ago committed by GitHub
parent e4ec065386
commit 0cd5bb50bd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -3,6 +3,7 @@ import moment from 'moment';
import PropTypes from 'prop-types';
import React, { Component } from 'react';
import TextTruncate from 'react-text-truncate';
import Alert from 'Components/Alert';
import HeartRating from 'Components/HeartRating';
import Icon from 'Components/Icon';
import Label from 'Components/Label';
@ -604,13 +605,19 @@ class SeriesDetails extends Component {
}
{
!isFetching && episodesError &&
<div>{translate('EpisodesLoadError')}</div>
!isFetching && episodesError ?
<Alert kind={kinds.DANGER}>
{translate('EpisodesLoadError')}
</Alert> :
null
}
{
!isFetching && episodeFilesError &&
<div>{translate('EpisodeFilesLoadError')}</div>
!isFetching && episodeFilesError ?
<Alert kind={kinds.DANGER}>
{translate('EpisodeFilesLoadError')}
</Alert> :
null
}
{
@ -633,10 +640,11 @@ class SeriesDetails extends Component {
}
{
isPopulated && !seasons.length &&
<div>
isPopulated && !seasons.length ?
<Alert kind={kinds.WARNING}>
{translate('NoEpisodeInformation')}
</div>
</Alert> :
null
}
</div>

@ -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…
Cancel
Save