Fix: Removed target='_blank' from dropdown links to open in same tab #1061
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Date: 09-06-2025
Developer Name: Yash Rane
🎉 This is my first pull request to this repository!
Issue: #853:-
Fixes issue with dropdown links opening in a new tab instead of the same tab.
Description:
This PR removes target="_blank" from the dropdown menu links (Status, Profile, Tasks, Identity) so that they now open in the same tab instead of a new tab. This aligns with user expectations for navigation within the same application.
Also ensures rel="noopener noreferrer" is retained for security where applicable.
Is Under Feature Flag:
Database changes:
Breaking changes:
Is Development Tested?
Tested in staging?
Screenshot / Proof:
UI behavior verified manually (click events open in same tab).
Description by Korbit AI
What change is being made?
Remove
target='_blank'attribute from dropdown menu links to open them in the same tab.Why are these changes being made?
The change was made to provide a more streamlined navigation experience by opening dropdown links in the same tab, avoiding the disruption of context switching to a new browser tab. This improves user experience by maintaining navigation consistency across the application.