From 81d7be2479c1828d84f3ccfaf0bcad069861122d Mon Sep 17 00:00:00 2001 From: Michel Weststrate Date: Wed, 6 Nov 2019 07:27:49 -0800 Subject: [PATCH] Fix overflow of long client names Summary: Look client names were unreadable due to line wrapping Reviewed By: jknoxville Differential Revision: D18348602 fbshipit-source-id: 682c3b17ef73ca0bf0f8193f71a608ada5cdfbf2 --- src/chrome/MainSidebar.tsx | 1 + 1 file changed, 1 insertion(+) diff --git a/src/chrome/MainSidebar.tsx b/src/chrome/MainSidebar.tsx index 0bb017f8d..afbf97603 100644 --- a/src/chrome/MainSidebar.tsx +++ b/src/chrome/MainSidebar.tsx @@ -75,6 +75,7 @@ const SidebarButton = styled(Button)(({small}: {small?: boolean}) => ({ background: 'none', padding: 0, justifyContent: 'left', + whiteSpace: 'nowrap', })); const PluginShape = styled(FlexBox)(