Skip to content

Commit

Permalink
Merge pull request #19012 from Snuffleupagus/pr-18819
Browse files Browse the repository at this point in the history
Fix Typo:XFATemplate class Para Styling paddingight => paddingRight
  • Loading branch information
Snuffleupagus authored Nov 6, 2024
2 parents f520d23 + 6d7157a commit bff6738
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/core/xfa/template.js
Original file line number Diff line number Diff line change
Expand Up @@ -4317,7 +4317,7 @@ class Para extends XFAObject {
style.paddingLeft = measureToString(this.marginLeft);
}
if (this.marginRight !== "") {
style.paddingight = measureToString(this.marginRight);
style.paddingRight = measureToString(this.marginRight);
}
if (this.spaceAbove !== "") {
style.paddingTop = measureToString(this.spaceAbove);
Expand Down

0 comments on commit bff6738

Please sign in to comment.