diff options
| author | bobzel <zzzman@gmail.com> | 2024-10-18 10:00:01 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-10-18 10:00:01 -0400 |
| commit | 6d5b80adf8c0d1f93dce30401e1f90d11b838de3 (patch) | |
| tree | 71c94585d70279a28832543102362a42668a1564 /src/client/views/collections/CollectionTimeView.tsx | |
| parent | cc3bdef579624d489fa6760733d6f9c31b8f2357 (diff) | |
fixed following anchors to collection card/carousel to set the current/selected Doc
Diffstat (limited to 'src/client/views/collections/CollectionTimeView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionTimeView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTimeView.tsx b/src/client/views/collections/CollectionTimeView.tsx index 5738e7ce3..d75c633ac 100644 --- a/src/client/views/collections/CollectionTimeView.tsx +++ b/src/client/views/collections/CollectionTimeView.tsx @@ -52,7 +52,7 @@ export class CollectionTimeView extends CollectionSubView() { title: ComputedField.MakeFunction(`"${this.pivotField}"])`) as unknown as string, // title can take a functiono or a string annotationOn: this.Document, }); - PinDocView(anchor, { pinData: { type_collection: true, pivot: true, filters: true } }, this.Document); + PinDocView(anchor, { pinData: { collectionType: true, pivot: true, filters: true } }, this.Document); if (addAsAnnotation) { // when added as an annotation, links to anchors can be found as links to the document even if the anchors are not rendered |
