Open klingebiel-sii opened 1 week ago
Latest commit: a6cf9f9cda0e9f8c46e9041737a17d73b1e507c3
Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.
Click here to learn what changesets are, and how to add one.
Click here if you're a maintainer who wants to add a changeset to this PR
Fixes https://github.com/diegomura/react-pdf/issues/2931
If the
x
attribute of a<tspan>
has not been defined explicitly, the current behavior causes the each<tspan>
to inherit thex
value of it's parent<text>
element.Is:
Should:
This PR fixes this issue by...
x
value to the originalx
value of the<tspan>
<text>
node and using it as the child node'sx
value, if necessary