Skip to content

Commit

Permalink
fix width of tables
Browse files Browse the repository at this point in the history
Signed-off-by: Adam Tackett <[email protected]>
  • Loading branch information
Adam Tackett committed Dec 5, 2024
1 parent c5c2372 commit ecf88da
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -364,7 +364,7 @@ export function SpanDetailPanel(props: {

const spanDetailTable = useMemo(
() => (
<div style={{ width: dynamicLayoutAdjustment }}>
<div style={{ width: 'auto' }}>
<SpanDetailTable
http={props.http}
hiddenColumns={mode === 'jaeger' ? ['traceID', 'traceGroup'] : ['traceId', 'traceGroup']}
Expand All @@ -386,7 +386,7 @@ export function SpanDetailPanel(props: {

const spanDetailTableHierarchy = useMemo(
() => (
<div style={{ width: dynamicLayoutAdjustment }}>
<div style={{ width: 'auto' }}>
<SpanDetailTableHierarchy
http={props.http}
hiddenColumns={mode === 'jaeger' ? ['traceID', 'traceGroup'] : ['traceId', 'traceGroup']}
Expand Down

0 comments on commit ecf88da

Please sign in to comment.