1
0

feat: rename TheNavigation to AppHeader

This commit is contained in:
Dominik Pschenitschni 2024-07-06 21:28:08 +02:00 committed by konrad
parent af54ee6c5c
commit 43e38fae17
2 changed files with 2 additions and 2 deletions

View File

@ -1,7 +1,7 @@
<template> <template>
<Ready> <Ready>
<template v-if="authUser"> <template v-if="authUser">
<TheNavigation /> <AppHeader />
<ContentAuth /> <ContentAuth />
</template> </template>
<ContentLinkShare v-else-if="authLinkShare" /> <ContentLinkShare v-else-if="authLinkShare" />
@ -30,7 +30,7 @@ import Notification from '@/components/misc/Notification.vue'
import UpdateNotification from '@/components/home/UpdateNotification.vue' import UpdateNotification from '@/components/home/UpdateNotification.vue'
import KeyboardShortcuts from '@/components/misc/keyboard-shortcuts/index.vue' import KeyboardShortcuts from '@/components/misc/keyboard-shortcuts/index.vue'
import TheNavigation from '@/components/home/TheNavigation.vue' import AppHeader from '@/components/home/AppHeader.vue'
import ContentAuth from '@/components/home/ContentAuth.vue' import ContentAuth from '@/components/home/ContentAuth.vue'
import ContentLinkShare from '@/components/home/ContentLinkShare.vue' import ContentLinkShare from '@/components/home/ContentLinkShare.vue'
import NoAuthWrapper from '@/components/misc/NoAuthWrapper.vue' import NoAuthWrapper from '@/components/misc/NoAuthWrapper.vue'