From 9e9ca526fec4ab851bb6ba9293442338c9aa72d9 Mon Sep 17 00:00:00 2001 From: Juan D Date: Fri, 23 Jun 2023 13:05:21 -0400 Subject: [PATCH] Prettier syntax update of sdt-properties --- src/file/table-of-contents/sdt-properties.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/file/table-of-contents/sdt-properties.ts b/src/file/table-of-contents/sdt-properties.ts index 998167d22a..4ee856eda3 100644 --- a/src/file/table-of-contents/sdt-properties.ts +++ b/src/file/table-of-contents/sdt-properties.ts @@ -4,7 +4,7 @@ import { StringValueElement, XmlComponent } from "@file/xml-components"; export class StructuredDocumentTagProperties extends XmlComponent { public constructor(alias?: string) { super("w:sdtPr"); - if(typeof alias === 'string'){ + if (typeof alias === "string") { this.root.push(new StringValueElement("w:alias", alias)); } }