fix(theme): incorrect display of the home local nav

This commit is contained in:
pengzhanbo 2024-07-17 03:53:30 +08:00
parent 9b1d0d3a25
commit 6e494c2d3a

View File

@ -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)
})
</script>