diff options
author | bobzel <zzzman@gmail.com> | 2021-02-11 11:23:55 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2021-02-11 11:23:55 -0500 |
commit | 96d730a155cc9e49ee83c8e985fbc5de87e7959f (patch) | |
tree | 4da042effbf147ea3eabdd44bbe6722c32c5117b /src/client/views/collections/CollectionStackingView.tsx | |
parent | c427898f8b529f64e079c3a465b3073a70400580 (diff) |
fixes for focus'ing to enable resetting of all navigations if desired(eg. zooming into portal)
Diffstat (limited to 'src/client/views/collections/CollectionStackingView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionStackingView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionStackingView.tsx b/src/client/views/collections/CollectionStackingView.tsx index 770aea362..9c12d5020 100644 --- a/src/client/views/collections/CollectionStackingView.tsx +++ b/src/client/views/collections/CollectionStackingView.tsx @@ -192,7 +192,7 @@ export class CollectionStackingView extends CollectionSubView<StackingDocument, } } return this.props.styleProvider?.(doc, props, property); - }; + } getDisplayDoc(doc: Doc, width: () => number) { const dataDoc = (!doc.isTemplateDoc && !doc.isTemplateForField && !doc.PARAMS) ? undefined : this.props.DataDoc; const height = () => this.getDocHeight(doc); |