mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
Update src/routes/MetaDetails/StreamsList/StreamsList.js
Co-authored-by: Timothy Z. <timothy@stremio.com>
This commit is contained in:
parent
3dcd0020c9
commit
37020f340c
1 changed files with 5 additions and 1 deletions
|
|
@ -136,7 +136,11 @@ const StreamsList = ({ className, video, onEpisodeSearch, ...props }) => {
|
|||
props.streams.every((streams) => streams.content.type === 'Err') ?
|
||||
<div className={styles['message-container']}>
|
||||
<SeasonEpisodePicker className={styles['search']} onSubmit={handleEpisodePicker} />
|
||||
{video?.upcoming && <div className={styles['label']}>{t('UPCOMING')}...</div>}
|
||||
{
|
||||
video?.upcoming ?
|
||||
<div className={styles['label']}>{t('UPCOMING')}...</div>
|
||||
: null
|
||||
}
|
||||
<Image className={styles['image']} src={require('/images/empty.png')} alt={' '} />
|
||||
<div className={styles['label']}>{t('NO_STREAM')}</div>
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue