diff options
| author | bobzel <zzzman@gmail.com> | 2021-02-16 20:48:29 -0500 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-02-16 20:48:29 -0500 |
| commit | 05b87c394731fbed21f9b358967c337ce294272d (patch) | |
| tree | fef4ccd0b46bada647f03eb7f6ffb57a4aba1e06 /src/client/views/collections/CollectionTimeView.tsx | |
| parent | 3dae4d3d8ac10f6f3c9f937282dbfa5882584aad (diff) | |
added doubel tap on links button to enter portal for document + links
Diffstat (limited to 'src/client/views/collections/CollectionTimeView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionTimeView.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionTimeView.tsx b/src/client/views/collections/CollectionTimeView.tsx index 426eced1d..53eb6e0be 100644 --- a/src/client/views/collections/CollectionTimeView.tsx +++ b/src/client/views/collections/CollectionTimeView.tsx @@ -81,8 +81,8 @@ export class CollectionTimeView extends CollectionSubView(doc => doc) { } else if (anchor.pivotField !== undefined) { // otherwise set document's fields based on anchor view spec this.layoutDoc._prevFilterIndex = 1; this.layoutDoc._pivotField = StrCast(anchor.pivotField); - this.layoutDoc._docFilters = new List<string>(this.pivotDocFilters()); - this.layoutDoc._docRangeFilters = new List<string>(this.pivotDocRangeFilters()); + this.layoutDoc._docFilters = new List<string>(StrListCast(anchor.docFilters)); + this.layoutDoc._docRangeFilters = new List<string>(StrListCast(anchor.docRangeFilters)); } return 0; } |
