fix(nav): display nav if locales are present (#321)

pull/325/head
m4dz 3 years ago committed by GitHub
parent ce86b51ccf
commit e76e6ecd54
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

@ -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>

Loading…
Cancel
Save