diff --git a/src/file/document/body/body.ts b/src/file/document/body/body.ts index 30f606af1d..1d7fcdac43 100644 --- a/src/file/document/body/body.ts +++ b/src/file/document/body/body.ts @@ -28,7 +28,11 @@ export class Body extends XmlComponent { if (section instanceof SectionProperties) { this.sections.push(section); } else { - this.sections.push(new SectionProperties(section)); + const params = { + ...this.defaultSection.Options, + ...section, + }; + this.sections.push(new SectionProperties(params)); } } public prepForXml(): IXmlableObject {