diff options
author | Melissa Zhang <mzhang19096@gmail.com> | 2020-07-06 23:43:41 -0700 |
---|---|---|
committer | Melissa Zhang <mzhang19096@gmail.com> | 2020-07-06 23:43:41 -0700 |
commit | 4fc843a84a3f3001f749d5152bdc491d8efe7f94 (patch) | |
tree | ade4c015b65635febbb5eebdd5a48281df6aa1a0 /src/client/views/nodes/DocumentView.tsx | |
parent | fbc7a328016af60052dd3f33c2d906e6c6447a5f (diff) | |
parent | 0438137cd435c47ce334b15a4ad00cbd70d80662 (diff) |
merge with master
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 128a56c19..0e5b09f8b 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -1121,7 +1121,7 @@ export class DocumentView extends DocComponent<DocumentViewProps, Document>(Docu return (this.props.treeViewDoc && this.props.LayoutTemplateString) || // render nothing for: tree view anchor dots this.layoutDoc.presBox || // presentationbox nodes this.props.dontRegisterView ? (null) : // view that are not registered - DocListCast(this.Document.links).filter(d => !d.hidden && this.isNonTemporalLink).map((d, i) => + DocUtils.FilterDocs(DocListCast(this.Document.links), this.props.docFilters(), []).filter(d => !d.hidden && this.isNonTemporalLink).map((d, i) => <DocumentView {...this.props} key={i + 1} Document={d} ContainingCollectionView={this.props.ContainingCollectionView} |