Skip to content

Commit

Permalink
chore(header): set fixed as default header position
Browse files Browse the repository at this point in the history
  • Loading branch information
Tahul committed Jan 27, 2023
1 parent 72c4e9a commit 31aaf1a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/app/AppLayout.vue
Expand Up @@ -3,7 +3,7 @@ const docus = useDocus()
const { navigation, page } = useContent()
const { navKeyFromPath } = useContentHelpers()
const headerPosition = computed(() => page.value?.header?.fixed || docus?.value?.header?.fixed || false)
const headerPosition = computed(() => page.value?.header?.fixed || docus?.value?.header?.fixed || true)
const titleTemplate = computed(() => {
const appTitleTemplate = docus?.value?.titleTemplate || `%s · ${docus?.value?.title}`
Expand Down

0 comments on commit 31aaf1a

Please sign in to comment.