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
|
<Link
|
||||||
class="text-xs"
|
class="text-xs"
|
||||||
href="https://git.noahsw.xyz/noah/noahsw.xyz"
|
href="https://git.noahsw.xyz/noah/noahsw.xyz"
|
||||||
target="about:blank">VIEW THE SOURCE</Link
|
target="_blank">VIEW THE SOURCE</Link
|
||||||
>
|
>
|
||||||
</footer>
|
</footer>
|
||||||
|
|
|
@ -36,7 +36,7 @@ const props: Props = Astro.props;
|
||||||
</Paragraph>
|
</Paragraph>
|
||||||
{
|
{
|
||||||
props.links.map(({ text, url }) => (
|
props.links.map(({ text, url }) => (
|
||||||
<Link href={url} target="about:blank">
|
<Link href={url} target="_blank">
|
||||||
{text}
|
{text}
|
||||||
</Link>
|
</Link>
|
||||||
))
|
))
|
||||||
|
|
Loading…
Reference in a new issue