diff options
author | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-07-06 23:49:32 -0500 |
---|---|---|
committer | anika-ahluwalia <anika.ahluwalia@gmail.com> | 2020-07-06 23:49:32 -0500 |
commit | c875e52afc8b461a04c61d69e37826526380ab19 (patch) | |
tree | 52166511a41b6829f99c0536fcc514e3a7288b1d /src/client/views/nodes/DocumentView.tsx | |
parent | e7326c10d2f94c11dedec1d0a280579ba8fa7af0 (diff) | |
parent | 0438137cd435c47ce334b15a4ad00cbd70d80662 (diff) |
merge fixes
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 9a4d9ac53..97e3bc01c 100644 --- a/src/client/views/nodes/DocumentView.tsx +++ b/src/client/views/nodes/DocumentView.tsx @@ -1112,7 +1112,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} |