Skip to content

Commit

Permalink
fix(showcase): add target to a tag
Browse files Browse the repository at this point in the history
  • Loading branch information
ryoppippi committed Dec 10, 2024
1 parent b070017 commit 6791b2f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/ShowcaseCard.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@
target={project.link.startsWith('http') ? '_blank' : '_self'}
transition-base
>
<a href={project.link} no-underline>
<a href={project.link} no-underline target={project.link.startsWith('http') ? '_blank' : '_self'}>
{#if project.image != null}
<Image
alt={project.title}
Expand Down

0 comments on commit 6791b2f

Please sign in to comment.