summaryrefslogtreecommitdiff
path: root/examples/blog/src/components/BlogPost.astro
diff options
context:
space:
mode:
authorGravatar Guilherme Siquinelli <guiseek@gmail.com> 2021-07-18 02:54:31 -0300
committerGravatar GitHub <noreply@github.com> 2021-07-18 00:54:31 -0500
commit35f7b474a18f99270e5d11560b6484eeb64b338f (patch)
tree504bf8ccc70d0e0f8a7c223f5e48cfb944051d91 /examples/blog/src/components/BlogPost.astro
parentd55d8b8c6e8b6088cf416d4a804207d0f4bef311 (diff)
downloadastro-35f7b474a18f99270e5d11560b6484eeb64b338f.tar.gz
astro-35f7b474a18f99270e5d11560b6484eeb64b338f.tar.zst
astro-35f7b474a18f99270e5d11560b6484eeb64b338f.zip
fix: fixes prop href of author component in example blog, was url (#734)
Diffstat (limited to 'examples/blog/src/components/BlogPost.astro')
-rw-r--r--examples/blog/src/components/BlogPost.astro2
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/blog/src/components/BlogPost.astro b/examples/blog/src/components/BlogPost.astro
index 95116b2e7..22fd74645 100644
--- a/examples/blog/src/components/BlogPost.astro
+++ b/examples/blog/src/components/BlogPost.astro
@@ -18,7 +18,7 @@ const { title, author, publishDate, heroImage } = Astro.props;
{heroImage && <img width="720" height="420" class="hero-image" loading="lazy" src={heroImage} />}
<p class="publish-date">{publishDate}</p>
<h1 class="title">{title}</h1>
- <Author name="@FredKSchott" url="https://twitter.com/FredKSchott" />
+ <Author name="@FredKSchott" href="https://twitter.com/FredKSchott" />
</header>
<main>
<slot />