Add aria-label and title attributes to local settings navigation items (#1949)

master
Claire 2022-11-16 20:56:06 +01:00 committed by GitHub
parent 8c56441b4a
commit 23ea0e7508
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 4 additions and 0 deletions

View File

@ -50,6 +50,8 @@ export default class LocalSettingsPage extends React.PureComponent {
<a
href={href}
className={finalClassName}
title={title}
aria-label={title}
>
{iconElem} <span>{title}</span>
</a>
@ -60,6 +62,8 @@ export default class LocalSettingsPage extends React.PureComponent {
role='button'
tabIndex='0'
className={finalClassName}
title={title}
aria-label={title}
>
{iconElem} <span>{title}</span>
</a>