From 6c4c579f2703fa46dca5b79586056058c8e045dd Mon Sep 17 00:00:00 2001 From: Anton Kastritskiy Date: Tue, 14 Nov 2023 08:14:37 -0800 Subject: [PATCH] Increase max width for resizable sidebar Reviewed By: LukeDefeo Differential Revision: D51305977 fbshipit-source-id: 03fbdba01d01aaecdd182538aed64ae396818f4d --- desktop/flipper-plugin/src/ui/Sidebar.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/desktop/flipper-plugin/src/ui/Sidebar.tsx b/desktop/flipper-plugin/src/ui/Sidebar.tsx index a2e5f52aa..36e2c6a03 100644 --- a/desktop/flipper-plugin/src/ui/Sidebar.tsx +++ b/desktop/flipper-plugin/src/ui/Sidebar.tsx @@ -168,7 +168,7 @@ export class Sidebar extends Component { if (horizontal) { width = width == null ? 200 : width; minWidth = (minWidth == null ? 100 : minWidth) + gutterWidth; - maxWidth = maxWidth == null ? 600 : maxWidth; + maxWidth = maxWidth == null ? 1200 : maxWidth; } else { height = height == null ? 200 : height; minHeight = minHeight == null ? 100 : minHeight;