mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-20 23:12:13 +00:00
Update StreamsList.js
This commit is contained in:
parent
d29b80887a
commit
d99a02d523
1 changed files with 9 additions and 4 deletions
|
|
@ -167,10 +167,6 @@ const StreamsList = ({ className, video, ...props }) => {
|
|||
isScrollable && countLoadingAddons === 0 ?
|
||||
<React.Fragment>
|
||||
<hr className={styles['line']} />
|
||||
<div className={styles['to-top-wrapper']} onClick={scrollToTop}>
|
||||
<Icon className={styles['icon']} name={'chevron-up'} />
|
||||
<div className={styles['label']}>Back to Top</div>
|
||||
</div>
|
||||
<Button className={styles['install-button-container']} title={t('ADDON_CATALOGUE_MORE')} href={'#/addons'}>
|
||||
<Icon className={styles['icon']} name={'addons'} />
|
||||
<div className={styles['label']}>{ t('ADDON_CATALOGUE_MORE') }</div>
|
||||
|
|
@ -197,6 +193,15 @@ const StreamsList = ({ className, video, ...props }) => {
|
|||
:
|
||||
null
|
||||
}
|
||||
{
|
||||
isScrollable && countLoadingAddons === 0 ?
|
||||
<div className={styles['to-top-wrapper']} onClick={scrollToTop}>
|
||||
<Icon className={styles['icon']} name={'chevron-up'} />
|
||||
<div className={styles['label']}>Back to Top</div>
|
||||
</div>
|
||||
:
|
||||
null
|
||||
}
|
||||
</div>
|
||||
);
|
||||
};
|
||||
|
|
|
|||
Loading…
Reference in a new issue