forked from mui/material-ui
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[code-infra] Don't require noreferrer on target link (mui#40447)
- Loading branch information
1 parent
1ee7802
commit 75b0966
Showing
18 changed files
with
46 additions
and
46 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -72,7 +72,7 @@ export default function DiamondSponsors() { | |
component="a" | ||
href="mailto:[email protected]" | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
rel="noopener" | ||
color="primary" | ||
sx={(theme) => ({ | ||
mr: 2, | ||
|
@@ -91,7 +91,7 @@ export default function DiamondSponsors() { | |
</Typography> | ||
<Typography variant="body2" color="text.secondary"> | ||
To join us, contact us at{' '} | ||
<Link href="mailto:[email protected]" target="_blank" rel="noopener noreferrer"> | ||
<Link href="mailto:[email protected]" target="_blank" rel="noopener"> | ||
[email protected] | ||
</Link>{' '} | ||
for pre-approval. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -137,7 +137,7 @@ export default function AppFooter(props: AppFooterProps) { | |
</Box> | ||
<Link href={ROUTES.support}>Support</Link> | ||
<Link href={ROUTES.privacyPolicy}>Privacy policy</Link> | ||
<Link target="_blank" rel="noopener noreferrer" href="mailto:[email protected]"> | ||
<Link target="_blank" rel="noopener" href="mailto:[email protected]"> | ||
Contact us | ||
</Link> | ||
</Box> | ||
|
@@ -157,7 +157,7 @@ export default function AppFooter(props: AppFooterProps) { | |
<Stack spacing={1} direction="row" flexWrap="wrap" useFlexGap> | ||
<IconButton | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
rel="noopener" | ||
href="https://github.com/mui" | ||
aria-label="github" | ||
title="GitHub" | ||
|
@@ -167,7 +167,7 @@ export default function AppFooter(props: AppFooterProps) { | |
</IconButton> | ||
<IconButton | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
rel="noopener" | ||
href={ROUTES.rssFeed} | ||
aria-label="RSS Feed" | ||
title="RSS Feed" | ||
|
@@ -177,7 +177,7 @@ export default function AppFooter(props: AppFooterProps) { | |
</IconButton> | ||
<IconButton | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
rel="noopener" | ||
href="https://twitter.com/MUI_hq" | ||
aria-label="twitter" | ||
title="X" | ||
|
@@ -187,7 +187,7 @@ export default function AppFooter(props: AppFooterProps) { | |
</IconButton> | ||
<IconButton | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
rel="noopener" | ||
href="https://www.linkedin.com/company/mui/" | ||
aria-label="linkedin" | ||
title="LinkedIn" | ||
|
@@ -197,7 +197,7 @@ export default function AppFooter(props: AppFooterProps) { | |
</IconButton> | ||
<IconButton | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
rel="noopener" | ||
href="https://www.youtube.com/@MUI_hq" | ||
aria-label="YouTube" | ||
title="YouTube" | ||
|
@@ -207,7 +207,7 @@ export default function AppFooter(props: AppFooterProps) { | |
</IconButton> | ||
<IconButton | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
rel="noopener" | ||
href="https://mui.com/r/discord/" | ||
aria-label="Discord" | ||
title="Discord" | ||
|
@@ -218,7 +218,7 @@ export default function AppFooter(props: AppFooterProps) { | |
{stackOverflowUrl ? ( | ||
<IconButton | ||
target="_blank" | ||
rel="noopener noreferrer" | ||
rel="noopener" | ||
href={stackOverflowUrl} | ||
aria-label="Stack Overflow" | ||
title="Stack Overflow" | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.