From e9ea8d6299b087113f7c434e3d3926446de54758 Mon Sep 17 00:00:00 2001 From: upsiflu Date: Thu, 13 Mar 2025 21:50:41 +0100 Subject: [PATCH] fix(front): minor errors --- front/src/components/library/Podcasts.vue | 2 +- front/src/ui/components/Sidebar.vue | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/front/src/components/library/Podcasts.vue b/front/src/components/library/Podcasts.vue index 42ea2c5b4..fbdb31e5c 100644 --- a/front/src/components/library/Podcasts.vue +++ b/front/src/components/library/Podcasts.vue @@ -51,7 +51,7 @@ const page = usePage() const tags = useRouteQuery('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 })) })) diff --git a/front/src/ui/components/Sidebar.vue b/front/src/ui/components/Sidebar.vue index ef3685954..c62be7c78 100644 --- a/front/src/ui/components/Sidebar.vue +++ b/front/src/ui/components/Sidebar.vue @@ -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') }}