mirror of
https://github.com/Stremio/stremio-web.git
synced 2026-04-18 21:12:13 +00:00
title attribute added to NavBarButton
This commit is contained in:
parent
1f00e91d12
commit
45b472d7a1
1 changed files with 1 additions and 1 deletions
|
|
@ -30,7 +30,7 @@ const NavBarButton = ({ className, icon, label, href, onClick }) => {
|
|||
return false;
|
||||
}, [routeRegexp, locationHash]);
|
||||
return (
|
||||
<Button className={classnames(className, styles['nav-bar-button-container'], { 'active': active })} tabIndex={-1} href={href} onClick={onClick}>
|
||||
<Button className={classnames(className, styles['nav-bar-button-container'], { 'active': active })} title={label} tabIndex={-1} href={href} onClick={onClick}>
|
||||
<Icon className={styles['icon']} icon={icon} />
|
||||
<div className={styles['label']}>{label}</div>
|
||||
</Button>
|
||||
|
|
|
|||
Loading…
Reference in a new issue