Skip to content

Commit

Permalink
Merge pull request #3850 from jpena925/mar4
Browse files Browse the repository at this point in the history
WV-172 Credits Page includes Linkedin Links TEAM REVIEW
  • Loading branch information
DaleMcGrew authored Mar 8, 2024
2 parents 7fd275d + 71cddfe commit cf64c16
Showing 1 changed file with 12 additions and 2 deletions.
14 changes: 12 additions & 2 deletions src/js/common/components/CreditsBody.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -119,7 +119,11 @@ class Credits extends Component {
<div key={item.name}>
<li>
{item.linkedin ? (
<a href={item.linkedin} target="_blank">{item.name}</a>
<OpenExternalWebSite
url={item.linkedin}
target="_blank"
body={item.name}
/>
) : (
<span>{item.name}</span>
)}
Expand All @@ -140,7 +144,13 @@ class Credits extends Component {
This list is in rough order of number of volunteer hours spent (10+ hours) or monetary donation level. Individual monetary donors only listed with express permission.
{' '}
(Our apologies if you should be on this list and are missing. Please contact
<a href="https://wevote.us/more/faq">support</a>
{' '}
<OpenExternalWebSite
url="https://wevote.us/more/faq"
target="_blank"
body="support"
/>
{' '}
with corrections.)
</CreditsDescriptionContainer>
</Wrapper>
Expand Down

0 comments on commit cf64c16

Please sign in to comment.