fix(front): minor errors

This commit is contained in:
upsiflu 2025-03-13 21:50:41 +01:00
parent 5199ac2509
commit e9ea8d6299
2 changed files with 2 additions and 2 deletions

View File

@ -51,7 +51,7 @@ const page = usePage()
const tags = useRouteQuery<string[]>('tag', []) const tags = useRouteQuery<string[]>('tag', [])
const tagList = computed(() => ({ const tagList = computed(() => ({
current: [].map(tag => ({ type: 'custom' as const, label: tag })), currents: [].map(tag => ({ type: 'custom' as const, label: tag })),
others: tags.value.map(tag => ({ type: 'custom' as const, label: tag })) others: tags.value.map(tag => ({ type: 'custom' as const, label: tag }))
})) }))

View File

@ -310,7 +310,7 @@ const isOpen = ref(false)
thin-font thin-font
icon="bi-heart" icon="bi-heart"
thick-when-active thick-when-active
:disabled="!store.state.auth.authenticated" :disabled="!store.state.auth.authenticated || undefined"
> >
{{ t('components.Sidebar.link.favorites') }} {{ t('components.Sidebar.link.favorites') }}
</Link> </Link>