diff options
author | bobzel <zzzman@gmail.com> | 2020-12-14 18:46:22 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-12-14 18:46:22 -0500 |
commit | 5f999d6fa4dcc8a8994a4c97f7ce6e0d66d67411 (patch) | |
tree | dda9e29669869ad47c521ec47073dd7a14a4ab35 /src/client/views/nodes/DocumentContentsView.tsx | |
parent | 1304bd7306ff9075455282624cb2385c5aeaf0fb (diff) |
renamed ContentFittingDocumentView as DocumentView. Renamed DocmentView as DocumentViewInternal
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 16937a791..f969bee85 100644 --- a/src/client/views/nodes/DocumentContentsView.tsx +++ b/src/client/views/nodes/DocumentContentsView.tsx @@ -156,7 +156,7 @@ export class DocumentContentsView extends React.Component<DocumentViewProps & Fo "onPointerUp", ]; const list = { - ...OmitKeys(this.props, [...docOnlyProps, 'NativeWidth', 'NativeHeight'], "", (obj: any) => obj.active = this.props.parentActive).omit, + ...OmitKeys(this.props, [...docOnlyProps], "", (obj: any) => obj.active = this.props.parentActive).omit, RootDoc: Cast(this.layoutDoc?.rootDocument, Doc, null) || this.layoutDoc, Document: this.layoutDoc, DataDoc: this.dataDoc, |