diff --git a/theme/src/client/components/VPLocalNav.vue b/theme/src/client/components/VPLocalNav.vue index a76290d4..3119d167 100644 --- a/theme/src/client/components/VPLocalNav.vue +++ b/theme/src/client/components/VPLocalNav.vue @@ -47,7 +47,7 @@ const classes = computed(() => { }) const showLocalNav = computed(() => { - return (hasSidebar.value || isBlogPost) && (!empty.value || y.value >= navHeight.value) + return (hasSidebar.value || isBlogPost.value) && (!empty.value || y.value >= navHeight.value) })