diff options
author | bobzel <zzzman@gmail.com> | 2020-08-09 20:36:39 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2020-08-09 20:36:39 -0400 |
commit | cc1d3df760efef033f5d5f03336cf7769b4dbfbf (patch) | |
tree | 7bac7039e03a42d6c5a8c7614640c75c03fd1609 /src/client/views/collections/CollectionSubView.tsx | |
parent | be7011f5ba6b45b4bff21e73e6c4226c909d446a (diff) |
added '*' prefix for matching related families of fields in SchemaView & Search.
Diffstat (limited to 'src/client/views/collections/CollectionSubView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionSubView.tsx | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionSubView.tsx b/src/client/views/collections/CollectionSubView.tsx index 72aece284..d1aeb1b65 100644 --- a/src/client/views/collections/CollectionSubView.tsx +++ b/src/client/views/collections/CollectionSubView.tsx @@ -182,8 +182,6 @@ export function CollectionSubView<T, X>(schemaCtor: (doc: Doc) => T, moreProps?: } childDocs = docsforFilter; - - const docFilters = this.docFilters(); const docRangeFilters = this.props.ignoreFields?.includes("_docRangeFilters") ? [] : Cast(this.props.Document._docRangeFilters, listSpec("string"), []); return this.props.Document.dontRegisterView ? docs : DocUtils.FilterDocs(docs, this.docFilters(), docRangeFilters, viewSpecScript); |