From 2ab6b67508e6296b9c265ac5f2011a8cd62bccb0 Mon Sep 17 00:00:00 2001 From: Muhsin Date: Wed, 15 Oct 2025 23:49:16 +0530 Subject: [PATCH] Update SidebarChangelogCard.vue --- .../components-next/sidebar/SidebarChangelogCard.vue | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/app/javascript/dashboard/components-next/sidebar/SidebarChangelogCard.vue b/app/javascript/dashboard/components-next/sidebar/SidebarChangelogCard.vue index b2f85aa95..2c621afc9 100644 --- a/app/javascript/dashboard/components-next/sidebar/SidebarChangelogCard.vue +++ b/app/javascript/dashboard/components-next/sidebar/SidebarChangelogCard.vue @@ -18,7 +18,7 @@ const dismissedSlugs = computed(() => { return uiSettings.value.changelog_dismissed_slugs || []; }); -// Get undismissed posts - pass them directly without transformation +// Get undismissed posts const visibleCards = computed(() => { return posts.value.filter(post => !dismissedSlugs.value.includes(post.slug)); }); @@ -46,8 +46,6 @@ const fetchChangelog = async () => { } } catch (err) { error.value = err; - // eslint-disable-next-line no-console - console.error('Failed to fetch changelog:', err); } finally { isLoading.value = false; }