diff options
author | bobzel <zzzman@gmail.com> | 2021-03-04 22:38:27 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-03-04 22:38:27 -0500 |
commit | 5753b5105a5f0afccea74abbceaf9f1f96e16db1 (patch) | |
tree | b25dee471745c03730ebbd333f06bf6f754057fa /src/client/views/nodes/DocumentView.tsx | |
parent | 47e0c97b04a67b3bad1f2c789145a92ba7069f1e (diff) |
fixed template doc height setting (when autoHeight text field)
Diffstat (limited to 'src/client/views/nodes/DocumentView.tsx')
-rw-r--r-- | src/client/views/nodes/DocumentView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/nodes/DocumentView.tsx b/src/client/views/nodes/DocumentView.tsx index 45dd3b545..a85082f26 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -757,7 +757,7 @@ export class DocumentViewInternal extends DocComponent<DocumentViewInternalProps screenToLocal = () => this.props.ScreenToLocalTransform().translate(0, -this.headerMargin); contentScaling = () => this.ContentScale; onClickFunc = () => this.onClickHandler; - setHeight = (height: number) => this.rootDoc._height = height; + setHeight = (height: number) => this.layoutDoc._height = height; setContentView = (view: { getAnchor?: () => Doc, forward?: () => boolean, back?: () => boolean }) => this._componentView = view; @observable contentsActive: () => boolean = returnFalse; @action setContentsActive = (setActive: () => boolean) => this.contentsActive = setActive; |