diff options
author | bobzel <zzzman@gmail.com> | 2020-12-10 11:58:25 -0500 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-12-10 11:58:25 -0500 |
commit | 81ee0bf99da264b76f26a21d57259d478cac07f3 (patch) | |
tree | 200a0e18ecfd3812d62aea722782b9d007f99964 /src/client/views/nodes/LinkBox.tsx | |
parent | 3412313dcde569f1f23616fa5e8a92c3985e0449 (diff) |
fixed filterBox/TreeView to support checkboxes again. Simplified {DocumentView/CollectionView/FieldView}props
Diffstat (limited to 'src/client/views/nodes/LinkBox.tsx')
-rw-r--r-- | src/client/views/nodes/LinkBox.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/nodes/LinkBox.tsx b/src/client/views/nodes/LinkBox.tsx index bf19457da..50ad884ca 100644 --- a/src/client/views/nodes/LinkBox.tsx +++ b/src/client/views/nodes/LinkBox.tsx @@ -21,8 +21,8 @@ export class LinkBox extends ViewBoxBaseComponent<FieldViewProps, LinkDocument>( <CollectionTreeView {...this.props} ChromeHeight={returnZero} - overrideDocuments={[this.dataDoc]} - ignoreFields={Cast(this.props.Document.linkBoxExcludedKeys, listSpec("string"), null)} + childDocuments={[this.dataDoc]} + treeViewSkipFields={Cast(this.props.Document.linkBoxExcludedKeys, listSpec("string"), null)} annotationsKey={""} dontRegisterView={true} renderDepth={this.props.renderDepth + 1} |