Skip to content

Commit

Permalink
open link on a new tab
Browse files Browse the repository at this point in the history
  • Loading branch information
vinzscam committed Feb 3, 2025
1 parent c87613a commit 184826c
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/components/common/UsefulContentSection.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -285,7 +285,9 @@ class UsefulContentSection extends Component<
<List>
{links.map(({ url, title }, key) => (
<li key={`${url}${key}`}>
<Link href={url}>{title}</Link>
<Link href={url} target="_blank">
{title}
</Link>
</li>
))}
</List>
Expand Down

0 comments on commit 184826c

Please sign in to comment.