fix(theme): fix algolia search filter

pull/421/head
Evan You 3 years ago
parent 8cbe26ee06
commit 5fd7db2b7f

@ -31,6 +31,9 @@ const isCustomLayout = computed(() => !!frontmatter.value.customLayout)
// home // home
const enableHome = computed(() => !!frontmatter.value.home) const enableHome = computed(() => !!frontmatter.value.home)
// automatic multilang check for AlgoliaSearchBox
const isMultiLang = computed(() => Object.keys(site.value.langs).length > 1)
// navbar // navbar
const showNavbar = computed(() => { const showNavbar = computed(() => {
const themeConfig = theme.value const themeConfig = theme.value
@ -85,7 +88,7 @@ const pageClasses = computed(() => {
<AlgoliaSearchBox <AlgoliaSearchBox
v-if="theme.algolia" v-if="theme.algolia"
:options="theme.algolia" :options="theme.algolia"
:multilang="!!theme.locales" :multilang="isMultiLang"
/> />
</slot> </slot>
</template> </template>

Loading…
Cancel
Save