Skip to content

Commit

Permalink
fix(nav): display nav if locales are present (#321)
Browse files Browse the repository at this point in the history
  • Loading branch information
m4dz committed Jun 23, 2021
1 parent ce86b51 commit e76e6ec
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/client/theme-default/components/NavLinks.vue
Expand Up @@ -9,7 +9,7 @@ import NavDropdownLink from './NavDropdownLink.vue'
const { theme } = useData()
const localeLinks = useLocaleLinks()
const repo = useRepo()
const show = computed(() => theme.value.value || repo.value)
const show = computed(() => theme.value.nav || repo.value || localeLinks.value)
</script>

<template>
Expand Down

0 comments on commit e76e6ec

Please sign in to comment.