fixed _blank
This commit is contained in:
parent
ef7433cd96
commit
93fbb87dee
2 changed files with 2 additions and 2 deletions
|
@ -9,6 +9,6 @@ import Link from "@/components/Link.astro";
|
|||
<Link
|
||||
class="text-xs"
|
||||
href="https://git.noahsw.xyz/noah/noahsw.xyz"
|
||||
target="about:blank">VIEW THE SOURCE</Link
|
||||
target="_blank">VIEW THE SOURCE</Link
|
||||
>
|
||||
</footer>
|
||||
|
|
|
@ -36,7 +36,7 @@ const props: Props = Astro.props;
|
|||
</Paragraph>
|
||||
{
|
||||
props.links.map(({ text, url }) => (
|
||||
<Link href={url} target="about:blank">
|
||||
<Link href={url} target="_blank">
|
||||
{text}
|
||||
</Link>
|
||||
))
|
||||
|
|
Loading…
Reference in a new issue