mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-21 07:32:02 +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') ?
|
props.streams.every((streams) => streams.content.type === 'Err') ?
|
||||||
<div className={styles['message-container']}>
|
<div className={styles['message-container']}>
|
||||||
<SeasonEpisodePicker className={styles['search']} onSubmit={handleEpisodePicker} />
|
<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={' '} />
|
<Image className={styles['image']} src={require('/images/empty.png')} alt={' '} />
|
||||||
<div className={styles['label']}>{t('NO_STREAM')}</div>
|
<div className={styles['label']}>{t('NO_STREAM')}</div>
|
||||||
{
|
{
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue