Update DashboardSidebarSplitter to Change Overflow Behavior
All checks were successful
farmcontrol/farmcontrol-ui/pipeline/head This commit looks good

- Modified the overflow style from 'hidden' to 'visible' in the DashboardSidebarSplitter component, allowing for improved visibility of sidebar content during resizing and collapsing actions.
This commit is contained in:
Tom Butcher 2026-08-20 21:39:31 +01:00
parent 5e46de8b60
commit 8ab2e057bb

View File

@ -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