Skip to content

Commit 861659b

Browse files
authored
fix(aci): fix resolution shading on metric charts (#104563)
shading direction was backwards before <img width="2404" height="560" alt="image" src="https://github.com/user-attachments/assets/c0e139c3-8477-4a89-826f-1c3a5801f8a6" /> after <img width="1198" height="269" alt="Screenshot 2025-12-08 at 3 48 42 PM" src="https://github.com/user-attachments/assets/119044d1-ee29-4568-9196-631d7545d491" />
1 parent f071324 commit 861659b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

static/app/views/detectors/hooks/useMetricDetectorThresholdSeries.tsx

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -255,7 +255,7 @@ export function useMetricDetectorThresholdSeries({
255255
markArea: createThresholdMarkArea(
256256
theme.green300,
257257
displayResolution,
258-
resolution.type === DataConditionType.GREATER
258+
resolution.type !== DataConditionType.GREATER
259259
),
260260
data: [],
261261
};

0 commit comments

Comments
 (0)