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:
@ -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;
|
||||
}
|
||||
|
Reference in New Issue
Block a user