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 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 }))
|
||||||
}))
|
}))
|
||||||
|
|
||||||
|
|
|
@ -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>
|
||||||
|
|
Loading…
Reference in New Issue