We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d2ecb9d commit f829710Copy full SHA for f829710
static/app/views/insights/pages/conversations/components/conversationView.tsx
@@ -151,7 +151,7 @@ function ConversationView({
151
}
152
153
return (
154
- <Flex flex="1" minHeight="0">
+ <Flex flex="1" minHeight="0" overflow="hidden">
155
<LeftPanel>
156
<StyledTabs
157
value={activeTab}
@@ -297,6 +297,9 @@ function LeftPanel({children}: {children: React.ReactNode}) {
297
298
const StyledTabs = styled(Tabs)`
299
min-height: 0;
300
+ height: 100%;
301
+ display: flex;
302
+ flex-direction: column;
303
`;
304
305
const FullWidthTabPanels = styled(TabPanels)`
0 commit comments