0
0

Remove redundant title attribute (#32258)

This commit is contained in:
Christian Schmidt 2024-10-04 18:23:05 +02:00 committed by GitHub
parent 51769e0670
commit c40ab43dc7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -15,7 +15,7 @@ const ColumnLink = ({ icon, activeIcon, iconComponent, activeIconComponent, text
if (href) { if (href) {
return ( return (
<a href={href} className={className} data-method={method} title={text} {...other}> <a href={href} className={className} data-method={method} {...other}>
{active ? activeIconElement : iconElement} {active ? activeIconElement : iconElement}
<span>{text}</span> <span>{text}</span>
{badgeElement} {badgeElement}
@ -23,7 +23,7 @@ const ColumnLink = ({ icon, activeIcon, iconComponent, activeIconComponent, text
); );
} else { } else {
return ( return (
<NavLink to={to} className={className} title={text} exact {...other}> <NavLink to={to} className={className} exact {...other}>
{active ? activeIconElement : iconElement} {active ? activeIconElement : iconElement}
<span>{text}</span> <span>{text}</span>
{badgeElement} {badgeElement}