modifications make to table-row files to correct table-row height property. Code was previously using height.height ini setHeight but should instead be using value.

This commit is contained in:
SoapyD
2020-07-16 12:37:24 +00:00
parent e2d8f1b6b1
commit 6b3d1d5579
4 changed files with 8 additions and 8 deletions

View File

@ -18,8 +18,8 @@ export class TableRowProperties extends IgnoreIfEmptyXmlComponent {
return this;
}
public setHeight(height: number, rule: HeightRule): TableRowProperties {
this.root.push(new TableRowHeight(height, rule));
public setHeight(value: number, rule: HeightRule): TableRowProperties {
this.root.push(new TableRowHeight(value, rule));
return this;
}