mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-05-15 03:51:33 +00:00
Added translation to the label
Fixed spacing
This commit is contained in:
parent
68c496ca92
commit
69d2de2ba2
1 changed files with 6 additions and 6 deletions
|
|
@ -174,10 +174,10 @@ const MetaPreview = ({ className, compact, name, logo, background, runtime, rele
|
||||||
})
|
})
|
||||||
.map((category, index) => (
|
.map((category, index) => (
|
||||||
<MetaLinks
|
<MetaLinks
|
||||||
key={index}
|
key={index}
|
||||||
className={styles['meta-links']}
|
className={styles['meta-links']}
|
||||||
label={category}
|
label={category}
|
||||||
links={linksGroups.get(category)}
|
links={linksGroups.get(category)}
|
||||||
/>
|
/>
|
||||||
))
|
))
|
||||||
}
|
}
|
||||||
|
|
@ -185,9 +185,9 @@ const MetaPreview = ({ className, compact, name, logo, background, runtime, rele
|
||||||
!compact && typeof description === 'string' && description.length > 0 ?
|
!compact && typeof description === 'string' && description.length > 0 ?
|
||||||
<div className={styles['description-container']}>
|
<div className={styles['description-container']}>
|
||||||
<div className={styles['label-container']}>
|
<div className={styles['label-container']}>
|
||||||
Summary
|
{t("SUMMARY")}
|
||||||
</div>
|
</div>
|
||||||
{description}
|
{description}
|
||||||
</div>
|
</div>
|
||||||
:
|
:
|
||||||
null
|
null
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue