Skip to content

Commit 5402dcb

Browse files
authored
fix(tracemetrics): Prevent header text wrapping in samples table during loading (#112576)
Fix styling issue where `Trace ID` column, was being line wrapped on load.
1 parent a0669f6 commit 5402dcb

File tree

1 file changed

+1
-0
lines changed

1 file changed

+1
-0
lines changed

static/app/views/explore/metrics/metricInfoTabs/metricInfoTabStyles.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -74,6 +74,7 @@ export const StyledSimpleTableHeaderCell = styled(SimpleTable.HeaderCell)<{
7474
noPadding?: boolean;
7575
}>`
7676
font-size: ${p => p.theme.font.size.sm};
77+
white-space: nowrap;
7778
padding: ${p => (p.noPadding ? 0 : p.embedded ? p.theme.space.xl : p.theme.space.lg)};
7879
padding-top: ${p =>
7980
p.noPadding ? 0 : p.embedded ? p.theme.space.sm : p.theme.space.xs};

0 commit comments

Comments
 (0)