Improve UI notices for series details
This commit is contained in:
parent
a6bce8a64a
commit
18831d164d
|
@ -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';
|
||||
|
@ -601,13 +602,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
|
||||
}
|
||||
|
||||
{
|
||||
|
@ -630,10 +637,11 @@ class SeriesDetails extends Component {
|
|||
}
|
||||
|
||||
{
|
||||
isPopulated && !seasons.length &&
|
||||
<div>
|
||||
isPopulated && !seasons.length ?
|
||||
<Alert kind={kinds.WARNING}>
|
||||
{translate('NoEpisodeInformation')}
|
||||
</div>
|
||||
</Alert> :
|
||||
null
|
||||
}
|
||||
|
||||
</div>
|
||||
|
|
Loading…
Reference in New Issue