Skip to content

Commit 80978aa

Browse files
authored
fix(traces): Bring back z-index fix (#72423)
Accidentally deleted it in a previous PR.
1 parent 0e55057 commit 80978aa

1 file changed

Lines changed: 1 addition & 0 deletions

File tree

static/app/views/traces/tracesChart.tsx

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -43,6 +43,7 @@ export function TracesChart({}: Props) {
4343
);
4444

4545
const seriesData = spanIndexedCountSeries.data?.['count()'];
46+
seriesData.z = 1; // TODO:: This shouldn't be required, but we're putting this in for now to avoid split lines being shown on top of the chart data :).
4647

4748
return (
4849
<ChartContainer>

0 commit comments

Comments
 (0)