diff options
author | 2021-08-10 09:51:19 -0700 | |
---|---|---|
committer | 2021-08-10 09:51:19 -0700 | |
commit | 1350d57997c3f50ca1f20247a734962f6825b591 (patch) | |
tree | 004710ada42a8a1a8298f958174b8955cc4366ee /docs/src | |
parent | 16790aee7b10db30e556679d30bba3d40094a124 (diff) | |
download | astro-1350d57997c3f50ca1f20247a734962f6825b591.tar.gz astro-1350d57997c3f50ca1f20247a734962f6825b591.tar.zst astro-1350d57997c3f50ca1f20247a734962f6825b591.zip |
Do not observe visible hydrate components more than once (#1015)
* add support for truely unique astro root uids
* update test to test uniqueness
Diffstat (limited to 'docs/src')
-rw-r--r-- | docs/src/components/RightSidebar/MoreMenu.astro | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/src/components/RightSidebar/MoreMenu.astro b/docs/src/components/RightSidebar/MoreMenu.astro index 88a31da28..6be2d86ee 100644 --- a/docs/src/components/RightSidebar/MoreMenu.astro +++ b/docs/src/components/RightSidebar/MoreMenu.astro @@ -64,5 +64,5 @@ const {editHref} = Astro.props; </li> </ul> <div style="margin: 2rem 0; text-align: center;"> - <ThemeToggleButton client:idle /> + <ThemeToggleButton client:visible /> </div> |