aboutsummaryrefslogtreecommitdiffstats
path: root/server/sonar-web/src/main/js/components/a11y/A11ySkipLinks.tsx
diff options
context:
space:
mode:
Diffstat (limited to 'server/sonar-web/src/main/js/components/a11y/A11ySkipLinks.tsx')
-rw-r--r--server/sonar-web/src/main/js/components/a11y/A11ySkipLinks.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/server/sonar-web/src/main/js/components/a11y/A11ySkipLinks.tsx b/server/sonar-web/src/main/js/components/a11y/A11ySkipLinks.tsx
index 8af879bbec2..302fe8de0c8 100644
--- a/server/sonar-web/src/main/js/components/a11y/A11ySkipLinks.tsx
+++ b/server/sonar-web/src/main/js/components/a11y/A11ySkipLinks.tsx
@@ -25,7 +25,7 @@ export default function A11ySkipLinks() {
return (
<A11yContext.Consumer>
{({ links }) =>
- links.map(link => (
+ links.map((link) => (
<a className="a11y-skip-link" href={`#a11y_target__${link.key}`} key={link.key}>
{link.label}
</a>