diff options
author | 2022-08-12 18:46:26 -0400 | |
---|---|---|
committer | 2022-08-12 18:46:26 -0400 | |
commit | 5fe46d946ad2e0ab52302e92279b5e0abd6910d4 (patch) | |
tree | 260fa7222d8319aa7284053486047134df62d6b2 /examples/docs/src/components/RightSidebar | |
parent | b1bd52e9ea98be6fdaccfff7849cc84a5dd843c4 (diff) | |
download | astro-5fe46d946ad2e0ab52302e92279b5e0abd6910d4.tar.gz astro-5fe46d946ad2e0ab52302e92279b5e0abd6910d4.tar.zst astro-5fe46d946ad2e0ab52302e92279b5e0abd6910d4.zip |
fix: content -> frontmatter, content.headings -> headings (#4294)
Diffstat (limited to 'examples/docs/src/components/RightSidebar')
-rw-r--r-- | examples/docs/src/components/RightSidebar/RightSidebar.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/examples/docs/src/components/RightSidebar/RightSidebar.astro b/examples/docs/src/components/RightSidebar/RightSidebar.astro index 0c01a2398..6144ed928 100644 --- a/examples/docs/src/components/RightSidebar/RightSidebar.astro +++ b/examples/docs/src/components/RightSidebar/RightSidebar.astro @@ -1,7 +1,7 @@ --- import TableOfContents from './TableOfContents'; import MoreMenu from './MoreMenu.astro'; -const { content, headings, githubEditUrl } = Astro.props; +const { headings, githubEditUrl } = Astro.props; --- <nav class="sidebar-nav" aria-labelledby="grid-right"> |