diff options
| author | bobzel <zzzman@gmail.com> | 2020-09-28 11:06:55 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-09-28 11:06:55 -0400 |
| commit | 22dae4786350f515d801e2128390587075617fe5 (patch) | |
| tree | 6d840d3d9bc334662c487883c61c025259cd1dfa /src | |
| parent | 3c6e77b7d2bcf4782d981b19bc32e402e07863ad (diff) | |
from last
Diffstat (limited to 'src')
| -rw-r--r-- | src/client/views/collections/CollectionSubView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionSubView.tsx b/src/client/views/collections/CollectionSubView.tsx index c6737780f..26fe00657 100644 --- a/src/client/views/collections/CollectionSubView.tsx +++ b/src/client/views/collections/CollectionSubView.tsx @@ -138,7 +138,7 @@ export function CollectionSubView<T, X>(schemaCtor: (doc: Doc) => T, moreProps?: const docFilters = this.docFilters(); const docRangeFilters = this.docRangeFilters(); const searchDocs = this.searchFilterDocs(); - if (this.props.Document.dontRegisterView || (!docFilters.length && !searchDocs.length)) return childDocs; + if (this.props.Document.dontRegisterView || (!docFilters.length && !docRangeFilters.length && !searchDocs.length)) return childDocs; const docsforFilter: Doc[] = []; childDocs.forEach((d) => { |
