Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
remove undefined fallback value
  • Loading branch information
gka committed Jan 29, 2026
commit bd7a6423fbbf4d589f195ee06a3f4a6cbb3bf152
2 changes: 1 addition & 1 deletion src/lib/marks/Vector.svelte
Original file line number Diff line number Diff line change
Expand Up @@ -186,7 +186,7 @@
usedScales
)}
<path
d={shapePath(shape, d.length, d.r ?? r)}
d={shapePath(shape, d.length, d.r)}
transform="translate({d.x}, {d.y}) rotate({resolveProp(
args.rotate,
d.datum,
Expand Down