diff options
author | Bob Zeleznik <zzzman@gmail.com> | 2020-03-28 13:11:15 -0400 |
---|---|---|
committer | Bob Zeleznik <zzzman@gmail.com> | 2020-03-28 13:11:15 -0400 |
commit | 10f12b4fd55aea24421297dae31b4d32e2e274df (patch) | |
tree | 0a4b3093549988eef023c8c67d69599235a8f2ae /src/client/views/nodes/DocumentContentsView.tsx | |
parent | a639be6959f791ce34c148a9072cb9bd4faa5d6f (diff) |
fixed screenshot icon and tweaked checkbox
Diffstat (limited to 'src/client/views/nodes/DocumentContentsView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentContentsView.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/nodes/DocumentContentsView.tsx b/src/client/views/nodes/DocumentContentsView.tsx index a58115120..bf335937f 100644 --- a/src/client/views/nodes/DocumentContentsView.tsx +++ b/src/client/views/nodes/DocumentContentsView.tsx @@ -78,8 +78,7 @@ export class DocumentContentsView extends React.Component<DocumentViewProps & { return proto instanceof Promise ? undefined : proto; } get layoutDoc() { - return Doc.expandTemplateLayout(this.props.LayoutDoc?.() || Doc.Layout(this.props.Document), this.props.Document, - StrCast(this.props.Document.layoutKey)); + return Doc.expandTemplateLayout(this.props.LayoutDoc?.() || Doc.Layout(this.props.Document), this.props.Document, StrCast(this.props.Document.layoutKey)); } CreateBindings(): JsxBindings { |