From 7f100bf104f876bd4b900dd9d769b5dfccc710fc Mon Sep 17 00:00:00 2001 From: Paul Marbach Date: Fri, 21 Nov 2025 14:02:31 -0500 Subject: [PATCH] fix points mode rendering --- packages/grafana-ui/src/components/Sparkline/utils.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/grafana-ui/src/components/Sparkline/utils.ts b/packages/grafana-ui/src/components/Sparkline/utils.ts index 6d5eafa9b76..fa07cafb604 100644 --- a/packages/grafana-ui/src/components/Sparkline/utils.ts +++ b/packages/grafana-ui/src/components/Sparkline/utils.ts @@ -215,7 +215,7 @@ export const prepareConfig = ( lineInterpolation: customConfig.lineInterpolation, showPoints: pointsMode, // TODO: #112977 enable highlight index - // pointSize: hasHighlightIndex ? HIGHLIGHT_IDX_POINT_SIZE : customConfig.pointSize, + pointSize: /* hasHighlightIndex ? HIGHLIGHT_IDX_POINT_SIZE : */ customConfig.pointSize, // pointsFilter: hasHighlightIndex ? [sparkline.highlightIndex!] : undefined, fillOpacity: customConfig.fillOpacity, fillColor: customConfig.fillColor,