From 8ab2e057bbe6bccc7164277fd137a0d5036b1a59 Mon Sep 17 00:00:00 2001 From: Tom Butcher Date: Thu, 20 Aug 2026 21:39:31 +0100 Subject: [PATCH] Update DashboardSidebarSplitter to Change Overflow Behavior - Modified the overflow style from 'hidden' to 'visible' in the DashboardSidebarSplitter component, allowing for improved visibility of sidebar content during resizing and collapsing actions. --- src/components/Dashboard/common/DashboardSidebarSplitter.jsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/Dashboard/common/DashboardSidebarSplitter.jsx b/src/components/Dashboard/common/DashboardSidebarSplitter.jsx index 4fa08c8c..0e5e7464 100644 --- a/src/components/Dashboard/common/DashboardSidebarSplitter.jsx +++ b/src/components/Dashboard/common/DashboardSidebarSplitter.jsx @@ -200,7 +200,7 @@ const DashboardSidebarSplitter = ({ sidebar, children }) => { max={collapsed ? collapsedWidth : MAX_SIDEBAR_PX} resizable={!collapsed} style={{ - overflow: 'hidden', + overflow: 'visible', minWidth: collapsedWidth, maxWidth: collapsed && !sizeTransitioning ? collapsedWidth : undefined