fix(front): minor errors
This commit is contained in:
parent
5199ac2509
commit
e9ea8d6299
|
@ -51,7 +51,7 @@ const page = usePage()
|
|||
const tags = useRouteQuery<string[]>('tag', [])
|
||||
|
||||
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 }))
|
||||
}))
|
||||
|
||||
|
|
|
@ -310,7 +310,7 @@ const isOpen = ref(false)
|
|||
thin-font
|
||||
icon="bi-heart"
|
||||
thick-when-active
|
||||
:disabled="!store.state.auth.authenticated"
|
||||
:disabled="!store.state.auth.authenticated || undefined"
|
||||
>
|
||||
{{ t('components.Sidebar.link.favorites') }}
|
||||
</Link>
|
||||
|
|
Loading…
Reference in New Issue