Skip to content

Commit

Permalink
fix(ux): open links in new tab (#167)
Browse files Browse the repository at this point in the history
  • Loading branch information
shivam-sharma7 authored Sep 18, 2024
1 parent 3b49d4b commit 7bf6646
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion app/components/SiteHeader.vue
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,11 @@ const logoURL = useRemoteAsset(careerSiteConfig.value.logo).url;
v-if="careerSiteConfig.links"
>
<Icon name="tdesign:link" class="w-4 h-4 fill-current shrink-0" />
<a class="text-sm font-medium whitespace-nowrap text-blue-500 hover:text-blue-600 ml-1" :href="link.href">
<a
class="text-sm font-medium whitespace-nowrap text-blue-500 hover:text-blue-600 ml-1"
:href="link.href"
target="_blank"
>
{{ link.title }}
</a>
</div>
Expand Down

0 comments on commit 7bf6646

Please sign in to comment.