-
Notifications
You must be signed in to change notification settings - Fork 121
fix(fe): links in new window #2992
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
The latest updates on your projects. Learn more about Vercel for GitHub.
|
How to use the Graphite Merge QueueAdd the label merge-queue to this PR to add it to the merge queue. You must have a Graphite account in order to use the merge queue. Sign up using this link. An organization admin has enabled the Graphite Merge Queue in this repository. Please do not merge from GitHub as this will restart CI on PRs being processed by the merge queue. This stack of pull requests is managed by Graphite. Learn more about stacking. |
Claude encountered an error —— View job I'll analyze this and get back to you. |
commit: |
Graphite Automations"Test" took an action on this PR • (09/25/25)1 assignee was added to this PR based on Kacper Wojciechowski's automation. |
Merge activity
|
### TL;DR Added `target="_blank"` and `rel="noopener noreferrer"` to Discord and GitHub links in the sidebar. ### What changed? - Removed unused icon imports (`faCheck` and `faTriangleExclamation`) - Added `target="_blank"` and `rel="noopener noreferrer"` attributes to the Discord and GitHub links in the sidebar to ensure they open in new tabs ### How to test? 1. Navigate to any page with the sidebar 2. Click on either the Discord or GitHub links 3. Verify that they open in a new tab instead of replacing the current page ### Why make this change? This improves user experience by allowing users to visit external resources without losing their current context in the application. The `rel="noopener noreferrer"` attribute also adds security by preventing the new tab from accessing the window.opener property.
TL;DR
Added
target="_blank"
andrel="noopener noreferrer"
to Discord and GitHub links in the sidebar.What changed?
faCheck
andfaTriangleExclamation
)target="_blank"
andrel="noopener noreferrer"
attributes to the Discord and GitHub links in the sidebar to ensure they open in new tabsHow to test?
Why make this change?
This improves user experience by allowing users to visit external resources without losing their current context in the application. The
rel="noopener noreferrer"
attribute also adds security by preventing the new tab from accessing the window.opener property.