diff options
author | bob <bcz@cs.brown.edu> | 2020-02-10 10:17:25 -0500 |
---|---|---|
committer | bob <bcz@cs.brown.edu> | 2020-02-10 10:17:25 -0500 |
commit | a411e92f6e7b486108f5d06564a2cdbbe91ae5ad (patch) | |
tree | f6658eb477b1c35132e673025521151082700869 /src/client/views/collections/CollectionTreeView.tsx | |
parent | 33556b484c54337427a81e8ac50d05996ec876b7 (diff) |
tweaks to pivot view layout and filtering.
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.tsx')
-rw-r--r-- | src/client/views/collections/CollectionTreeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx index 33417c73d..ab4804cdd 100644 --- a/src/client/views/collections/CollectionTreeView.tsx +++ b/src/client/views/collections/CollectionTreeView.tsx @@ -764,7 +764,7 @@ Scripting.addGlobal(function readFacetData(layoutDoc: Doc, dataDoc: Doc, dataKey }); Scripting.addGlobal(function determineCheckedState(layoutDoc: Doc, facetHeader: string, facetValue: string) { - const docFilters = Cast(layoutDoc._docFilter, listSpec("string"), []); + const docFilters = Cast(layoutDoc._docFilters, listSpec("string"), []); for (let i = 0; i < docFilters.length; i += 3) { const [header, value, state] = docFilters.slice(i, i + 3); if (header === facetHeader && value === facetValue) { |