diff options
author | bobzel <zzzman@gmail.com> | 2020-09-09 17:32:40 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-09-09 17:32:40 -0400 |
commit | 19751f41b642ad68e8029e6ea618232543a02ad8 (patch) | |
tree | 5304aaa2b9ee65a0ff98f061d53bdac5b489679e /src/client/views/nodes/DocumentContentsView.tsx | |
parent | b8300497de3d496015c719ad59df9b1d6d4b0e56 (diff) | |
parent | 5421bce8982076e671c0ff43c38621b43731ffb0 (diff) |
Merge pull request #697 from browngraphicslab/workingTemplates
Working templates
Diffstat (limited to 'src/client/views/nodes/DocumentContentsView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentContentsView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentContentsView.tsx b/src/client/views/nodes/DocumentContentsView.tsx index 90fc5dc64..67e7c1986 100644 --- a/src/client/views/nodes/DocumentContentsView.tsx +++ b/src/client/views/nodes/DocumentContentsView.tsx @@ -148,7 +148,7 @@ export class DocumentContentsView extends React.Component<DocumentViewProps & Fo CreateBindings(onClick: Opt<ScriptField>, onInput: Opt<ScriptField>): JsxBindings { const list = { - ...OmitKeys(this.props, ['parentActive'], "", (obj: any) => obj.active = this.props.parentActive).omit, + ...OmitKeys(this.props, ['parentActive', 'NativeWidth', 'NativeHeight'], "", (obj: any) => obj.active = this.props.parentActive).omit, RootDoc: Cast(this.layoutDoc?.rootDocument, Doc, null) || this.layoutDoc, Document: this.layoutDoc, DataDoc: this.dataDoc, |