diff --git a/static/app/views/issueDetails/streamline/eventDetailsHeader.tsx b/static/app/views/issueDetails/streamline/eventDetailsHeader.tsx index b4e2901a363910..25147d136d50d5 100644 --- a/static/app/views/issueDetails/streamline/eventDetailsHeader.tsx +++ b/static/app/views/issueDetails/streamline/eventDetailsHeader.tsx @@ -114,11 +114,11 @@ export function EventDetailsHeader({group, event, project}: EventDetailsHeaderPr )} position="bottom-start" > - + @@ -277,7 +277,12 @@ const StyledPageFilterBar = styled(PageFilterBar)` const GraphSection = styled('div')` display: flex; - gap: ${p => p.theme.space.lg}; + gap: ${p => p.theme.space.sm}; + + @media (min-width: ${p => p.theme.breakpoints.sm}) { + gap: ${p => p.theme.space.lg}; + } + & > * { background: ${p => p.theme.background}; border-radius: ${p => p.theme.borderRadius}; diff --git a/static/app/views/issueDetails/streamline/eventGraph.tsx b/static/app/views/issueDetails/streamline/eventGraph.tsx index a34c93d56c07b5..855f37217b587b 100644 --- a/static/app/views/issueDetails/streamline/eventGraph.tsx +++ b/static/app/views/issueDetails/streamline/eventGraph.tsx @@ -5,7 +5,6 @@ import { useRef, useState, type CSSProperties, - type RefObject, } from 'react'; import {useTheme} from '@emotion/react'; import styled from '@emotion/styled'; @@ -110,20 +109,6 @@ function createSeriesAndCount(stats: EventsStats) { ); } -function GraphPlaceholder({ - ref, - height = 96, -}: { - height?: number; - ref?: RefObject; -}) { - return ( - - - - ); -} - export function EventGraph({ group, event, @@ -509,7 +494,9 @@ export function EventGraph({ ) : (
)} - + + + ); } @@ -639,7 +626,7 @@ function SummaryContainer(props: FlexProps) { const theme = useTheme(); return ( p.theme.space.sm} 0 ${p => p.theme.space.sm} 0; - margin: 0 ${p => p.theme.space.md}; -`; - export const GraphAlert = styled(Alert)` padding-left: ${p => p.theme.space['2xl']}; margin: 0 0 0 -${p => p.theme.space['2xl']}; diff --git a/static/app/views/issueDetails/streamline/issueTagsPreview.tsx b/static/app/views/issueDetails/streamline/issueTagsPreview.tsx index 2c10be6d983ad7..ca2d12e5eaf3e9 100644 --- a/static/app/views/issueDetails/streamline/issueTagsPreview.tsx +++ b/static/app/views/issueDetails/streamline/issueTagsPreview.tsx @@ -193,7 +193,7 @@ function DistributionsDrawerButton({ replace disabled={tags.length === 0} > - {includeFeatureFlags + {includeFeatureFlags && !isScreenSmall ? tct('View[nbsp]All Tags[nbsp]&[nbsp]Flags', { nbsp: '\u00A0', // non-breaking space unicode character. })