Added translation to the label

Fixed spacing
This commit is contained in:
kKaskak 2023-09-06 13:56:14 +03:00
parent 68c496ca92
commit 69d2de2ba2

View file

@ -174,10 +174,10 @@ const MetaPreview = ({ className, compact, name, logo, background, runtime, rele
})
.map((category, index) => (
<MetaLinks
key={index}
className={styles['meta-links']}
label={category}
links={linksGroups.get(category)}
key={index}
className={styles['meta-links']}
label={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 ?
<div className={styles['description-container']}>
<div className={styles['label-container']}>
Summary
{t("SUMMARY")}
</div>
{description}
{description}
</div>
:
null