mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-31 03:28:49 +00:00
indetation fix
This commit is contained in:
parent
69d2de2ba2
commit
a5ff41bcdf
1 changed files with 13 additions and 13 deletions
|
|
@ -167,19 +167,19 @@ const MetaPreview = ({ className, compact, name, logo, background, runtime, rele
|
|||
}
|
||||
{
|
||||
Array.from(linksGroups.keys())
|
||||
.filter((category) => {
|
||||
return category !== CONSTANTS.IMDB_LINK_CATEGORY &&
|
||||
category !== CONSTANTS.SHARE_LINK_CATEGORY &&
|
||||
category !== CONSTANTS.WRITERS_LINK_CATEGORY;
|
||||
})
|
||||
.map((category, index) => (
|
||||
<MetaLinks
|
||||
key={index}
|
||||
className={styles['meta-links']}
|
||||
label={category}
|
||||
links={linksGroups.get(category)}
|
||||
/>
|
||||
))
|
||||
.filter((category) => {
|
||||
return category !== CONSTANTS.IMDB_LINK_CATEGORY &&
|
||||
category !== CONSTANTS.SHARE_LINK_CATEGORY &&
|
||||
category !== CONSTANTS.WRITERS_LINK_CATEGORY;
|
||||
})
|
||||
.map((category, index) => (
|
||||
<MetaLinks
|
||||
key={index}
|
||||
className={styles['meta-links']}
|
||||
label={category}
|
||||
links={linksGroups.get(category)}
|
||||
/>
|
||||
))
|
||||
}
|
||||
{
|
||||
!compact && typeof description === 'string' && description.length > 0 ?
|
||||
|
|
|
|||
Loading…
Reference in a new issue