Skip to content

Commit

Permalink
Merge pull request #32 from perjansson/develop
Browse files Browse the repository at this point in the history
Open collaborator links in new tab
  • Loading branch information
perjansson authored Jan 24, 2022
2 parents f6431e0 + 54f100e commit 50ab2b3
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/components/projectContent.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -184,7 +184,12 @@ export const ProjectDetails: React.FC = () => {
{collaborators?.items.map(({ name, linkedin }, index) => {
if (linkedin) {
return (
<a key={index} href={linkedin}>
<a
key={index}
href={linkedin}
target="_blank"
rel="noreferrer noopener"
>
{name}
</a>
)
Expand Down

0 comments on commit 50ab2b3

Please sign in to comment.