aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/nodes/DocumentLinksButton.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2021-02-21 19:40:38 -0500
committerbobzel <zzzman@gmail.com>2021-02-21 19:40:38 -0500
commitdcf0389b770b06a04a45b4aedd62bf455d7848e7 (patch)
tree3153b4dd79c61318fe27391943055690b7056b63 /src/client/views/nodes/DocumentLinksButton.tsx
parent1c1b00e5e164ae82275e03b488a5a81eb1721234 (diff)
fixed compile warnings.
Diffstat (limited to 'src/client/views/nodes/DocumentLinksButton.tsx')
-rw-r--r--src/client/views/nodes/DocumentLinksButton.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentLinksButton.tsx b/src/client/views/nodes/DocumentLinksButton.tsx
index 8a90d5d62..18cabc309 100644
--- a/src/client/views/nodes/DocumentLinksButton.tsx
+++ b/src/client/views/nodes/DocumentLinksButton.tsx
@@ -94,7 +94,7 @@ export class DocumentLinksButton extends React.Component<DocumentLinksButtonProp
const rootAlias = Doc.MakeAlias(rootDoc);
rootAlias.x = rootAlias.y = 0;
return rootAlias;
- }
+ };
let wid = rootDoc[WidthSym]();
const target = ((docx instanceof Doc) && docx) || Docs.Create.FreeformDocument([rootAlias()], { title: this.props.View.Document.title + "-pivot", _width: 500, _height: 500, }, docid);
const docs = await DocListCastAsync(Doc.GetProto(target).data);