Skip to content

Commit

Permalink
[docs] Fix rel attribute on edit GitHub links (#614)
Browse files Browse the repository at this point in the history
  • Loading branch information
oliviertassinari authored Sep 16, 2024
1 parent 03dc66a commit 02d26bc
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion docs/src/components/EditPageGithubLink.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ export function EditPageGithubLink(props: EditPageGithubLinkProps) {

const url = `${REPO_ROOT}/edit/${DEFAULT_BRANCH}/docs/data/${category}/${slug}/${slug}.mdx`;
return (
<a href={url} target="_blank" rel="noopener noreferrer" className={classes.root}>
<a href={url} target="_blank" rel="noopener nofollow" className={classes.root}>
Edit this page on GitHub
</a>
);
Expand Down

0 comments on commit 02d26bc

Please sign in to comment.