diff options
| author | bobzel <zzzman@gmail.com> | 2024-03-30 17:08:03 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2024-03-30 17:08:03 -0400 |
| commit | 10e1a8c7edbc0c19fda4efd82d7ed802ccbf9b4f (patch) | |
| tree | 3cc0bd3b1a13db752718e819fe3632a18cefb5d6 /src/client/views/collections/CollectionTimeView.tsx | |
| parent | aeeebf6d83868d4a5040e9632503511617242c55 (diff) | |
got rid of HTMLMarkers in favor of Configs -- fixes issues with pdf and web annotations not scrolling to the right place. Also got rid of default values for x/y which caused a similar problem for some configs which should not have x/y set. fixed webBox to have its annotation computedField set properly
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 b92edd165..37452ddfb 100644 --- a/src/client/views/collections/CollectionTimeView.tsx +++ b/src/client/views/collections/CollectionTimeView.tsx @@ -49,7 +49,7 @@ export class CollectionTimeView extends CollectionSubView() { } getAnchor = (addAsAnnotation: boolean) => { - const anchor = Docs.Create.HTMLMarkerDocument([], { + const anchor = Docs.Create.ConfigDocument({ title: ComputedField.MakeFunction(`"${this.pivotField}"])`) as any, annotationOn: this.Document, }); |
