diff options
author | bobzel <zzzman@gmail.com> | 2020-09-09 17:34:35 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-09-09 17:34:35 -0400 |
commit | e650f4dddb6a5f30b8eac0c6097cead28e04cd48 (patch) | |
tree | f015b71920a0ff6a0d5a7124b00acb4f8dc1001b /src/client/views/nodes/DocumentContentsView.tsx | |
parent | 54c02b71da4e7a698e0d5d7ecf66ab3fd082edf6 (diff) | |
parent | 19751f41b642ad68e8029e6ea618232543a02ad8 (diff) |
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
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, |