mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
meta_details_cat image renamed to empty
This commit is contained in:
parent
17aca73990
commit
7329d1ab04
3 changed files with 3 additions and 3 deletions
|
Before Width: | Height: | Size: 9.8 KiB After Width: | Height: | Size: 9.8 KiB |
|
|
@ -19,13 +19,13 @@ const StreamsList = ({ className, streamsResources }) => {
|
|||
{
|
||||
streamsResources.length === 0 ?
|
||||
<div className={styles['message-container']}>
|
||||
<Image className={styles['image']} src={'/images/meta_details_cat.png'} />
|
||||
<Image className={styles['image']} src={'/images/empty.png'} />
|
||||
<div className={styles['label']}>No addons were requested for streams</div>
|
||||
</div>
|
||||
:
|
||||
streamsResources.every((streamsResource) => streamsResource.content.type === 'Err') ?
|
||||
<div className={styles['message-container']}>
|
||||
<Image className={styles['image']} src={'/images/meta_details_cat.png'} />
|
||||
<Image className={styles['image']} src={'/images/empty.png'} />
|
||||
<div className={styles['label']}>No streams were found!</div>
|
||||
<div className={styles['description']}>Please install some addons to find more streams</div>
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -41,7 +41,7 @@ const VideosList = ({ className, metaResource }) => {
|
|||
:
|
||||
metaResource.content.type === 'Err' || videosForSeason.length === 0 ?
|
||||
<div className={styles['message-container']}>
|
||||
<Image className={styles['image']} src={'/images/meta_details_cat.png'} />
|
||||
<Image className={styles['image']} src={'/images/empty.png'} />
|
||||
<div className={styles['label']}>No videos found for this meta</div>
|
||||
</div>
|
||||
:
|
||||
|
|
|
|||
Loading…
Reference in a new issue