From 8dadf281251ec453e445a41a705c6acbe26f4b7b Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Mon, 29 Mar 2021 03:37:14 -0700 Subject: [PATCH] Fix layout regression in sidebar Summary: D27233899 (https://github.com/facebook/flipper/commit/dd1f2fdeaa9744aaf14586a4e886992525285d17) caused a layouting regressions. Fixed in this diff. Fixes https://fb.workplace.com/groups/flippersupport/permalink/1104019500078707/ Reviewed By: passy, fabiomassimo Differential Revision: D27394188 fbshipit-source-id: d928c9da82beb850ff512393cbb589f625889442 --- desktop/flipper-plugin/src/ui/Sidebar.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/desktop/flipper-plugin/src/ui/Sidebar.tsx b/desktop/flipper-plugin/src/ui/Sidebar.tsx index c1f6ff582..c7c4e0747 100644 --- a/desktop/flipper-plugin/src/ui/Sidebar.tsx +++ b/desktop/flipper-plugin/src/ui/Sidebar.tsx @@ -41,6 +41,7 @@ const SidebarContainer = styled(Layout.Container)<{ backgroundColor: theme.backgroundDefault, }), flex: 1, + overflow: 'hidden', })); SidebarContainer.displayName = 'Sidebar:SidebarContainer';