This is an automated email from the ASF dual-hosted git repository. michaelsmolina pushed a commit to branch 5.0 in repository https://gitbox.apache.org/repos/asf/superset.git
commit 7c463742029234efaa20154e6659d6e556648826 Author: Evan Rusackas <e...@preset.io> AuthorDate: Fri Apr 18 10:07:40 2025 -0600 fix(deckgl): Update Arc to properly adjust line width (#33154) (cherry picked from commit b589d44dfb1081d0ff31e81b793ba08885fa579f) --- .../plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx index 05c755b1a5..a1d5c1d67f 100644 --- a/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx +++ b/superset-frontend/plugins/legacy-preset-chart-deckgl/src/layers/Arc/Arc.tsx @@ -77,7 +77,7 @@ export function getLayer( getTargetColor: (d: any) => d.targetColor || d.color || [tc.r, tc.g, tc.b, 255 * tc.a], id: `path-layer-${fd.slice_id}` as const, - strokeWidth: fd.stroke_width ? fd.stroke_width : 3, + getWidth: fd.stroke_width ? fd.stroke_width : 3, ...commonLayerProps(fd, setTooltip, setTooltipContent(fd)), }); }