Bosu - fix: make community member email clickable - #5447
Open
BosuBose132 wants to merge 1 commit into
Open
Conversation
✅ Deploy Preview for highestgoodnetwork-dev ready!
To edit notification comments on pull requests, go to your Netlify project configuration. |
|
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.



PR Description
Description
Fixes the Community Members page email interaction issue in the HGN Help Dashboard.
On
/hgnhelp/community, community member email addresses were displayed as plain text and could not be clicked. This update makes the displayed email address a semanticmailto:link so selecting it opens the user's configured/default email client with the corresponding email address.The implementation is intentionally limited to the email interaction and preserves the existing Community Member card layout, email icon, Slack information, Redux logic, and other functionality.
Fixes: Bug list item – Make email addresses clickable on the HGN Questionnaire / Community Members page.
Related PRS (if any):
Main changes explained:
src/components/HGNHelpSkillsDashboard/UserCard.jsxto replace the plain-text email<span>with a semantic<a>element usinghref="mailto:...".aria-labelto the email link using the community member's name.src/components/HGNHelpSkillsDashboard/style/UserCard.module.csswith a focusedcontactLinkstyle.How to test:
Clear the browser site data/cache if necessary.
Log in using a valid test account.
Navigate to:
Locate a Community Member card that contains an email address.
Verify that:
mailto:email address.Verify the page in light mode.
Verify the new email-link behavior and styling in dark mode.
Screenshots or videos of changes:
Before:
Community member email addresses were displayed as plain text and had no click behavior.
After:
Community member email addresses are clickable
mailto:links that open the user's configured email client while preserving the existing card styling.Note:
This is a frontend-only, narrowly scoped change. No backend/API changes or additional dependencies are required. The browser or operating system determines which configured mail application handles the
mailto:link.