Skip to content

Commit

Permalink
fix(metrics): Scatter series z index (#67151)
Browse files Browse the repository at this point in the history
  • Loading branch information
ArthurKnaus authored Mar 18, 2024
1 parent d1a6331 commit 610b14e
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions static/app/views/ddm/chart/useMetricChartSamples.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -189,7 +189,7 @@ export function useMetricChartSamples({
value: yPosition,
},
],
z: timeseries.length + 1,
z: baseProps.series.length + 1,
};
});
}
Expand Down Expand Up @@ -244,7 +244,6 @@ export function useMetricChartSamples({
valueRect,
xAxis,
yAxis,
timeseries.length,
]
);

Expand Down

0 comments on commit 610b14e

Please sign in to comment.