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') }}