Skip to content

Commit c40ab43

Browse files
authored
Remove redundant title attribute (mastodon#32258)
1 parent 51769e0 commit c40ab43

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/javascript/mastodon/features/ui/components/column_link.jsx

+2-2
Original file line numberDiff line numberDiff line change
@@ -15,15 +15,15 @@ const ColumnLink = ({ icon, activeIcon, iconComponent, activeIconComponent, text
1515

1616
if (href) {
1717
return (
18-
<a href={href} className={className} data-method={method} title={text} {...other}>
18+
<a href={href} className={className} data-method={method} {...other}>
1919
{active ? activeIconElement : iconElement}
2020
<span>{text}</span>
2121
{badgeElement}
2222
</a>
2323
);
2424
} else {
2525
return (
26-
<NavLink to={to} className={className} title={text} exact {...other}>
26+
<NavLink to={to} className={className} exact {...other}>
2727
{active ? activeIconElement : iconElement}
2828
<span>{text}</span>
2929
{badgeElement}

0 commit comments

Comments
 (0)