This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/superset.git
The following commit(s) were added to refs/heads/master by this push:
new b589d44dfb fix(deckgl): Update Arc to properly adjust line width
(#33154)
b589d44dfb is described below
commit b589d44dfb1081d0ff31e81b793ba08885fa579f
Author: Evan Rusackas <[email protected]>
AuthorDate: Fri Apr 18 10:07:40 2025 -0600
fix(deckgl): Update Arc to properly adjust line width (#33154)
---
.../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)),
});
}