From f5957e7970bf860a88a7d2a487430f4ded246d9a Mon Sep 17 00:00:00 2001 From: Pranav Date: Sun, 11 Jan 2026 00:31:17 -0800 Subject: [PATCH] fix: Reset sidebar to show expanded list when refreshing the page (#13229) Previously, the sidebar remembered which section was expanded using session storage. This caused a confusing experience where the sidebar would collapse on page refresh. With this update, the session storage dependency is removed, and the sidebar would expand based on the current active page, which gives a cleaner UX. --- .../dashboard/components-next/sidebar/Sidebar.vue | 12 ++---------- .../components-next/sidebar/SidebarGroup.vue | 12 +++++++++++- 2 files changed, 13 insertions(+), 11 deletions(-) diff --git a/app/javascript/dashboard/components-next/sidebar/Sidebar.vue b/app/javascript/dashboard/components-next/sidebar/Sidebar.vue index a37cde89f..95baafcfd 100644 --- a/app/javascript/dashboard/components-next/sidebar/Sidebar.vue +++ b/app/javascript/dashboard/components-next/sidebar/Sidebar.vue @@ -1,12 +1,11 @@