mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-03-11 21:27:05 +00:00
tabIndex removed from meta links
This commit is contained in:
parent
d77d38d84c
commit
67aae60b8d
1 changed files with 1 additions and 1 deletions
|
|
@ -17,7 +17,7 @@ const MetaLinks = ({ className, label = '', links = [] }) => {
|
|||
Array.isArray(links) && links.length > 0 ?
|
||||
<div className={styles['links-container']}>
|
||||
{links.map(({ label, href }, index) => (
|
||||
<Button key={`${label}-${href}-${index}`} className={styles['link']} title={label} tabIndex={-1} href={href}>
|
||||
<Button key={`${label}-${href}-${index}`} className={styles['link']} title={label} href={href}>
|
||||
{label}
|
||||
{index < links.length - 1 ? ',' : null}
|
||||
</Button>
|
||||
|
|
|
|||
Loading…
Reference in a new issue