You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
fix: format Length values without trailing .0 for whole numbers
Update Length.stringValue to format whole numbers cleanly (100 instead of 100.0)
while preserving precision for fractional values.
This ensures SVG output is clean and human-readable:
- .number(100) → "100"
- .px(100) → "100px"
- .percentage(50) → "50%"
- .em(2.5) → "2.5em"
Update tests to expect clean formatting without .0 suffix.
0 commit comments