diff options
| author | bobzel <zzzman@gmail.com> | 2021-08-19 02:22:38 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2021-08-19 02:22:38 -0400 |
| commit | 9f24c29df130ce4e206bc655ed7025e58c1517ce (patch) | |
| tree | a8e375b101d2dd1a5075779c230b3bb7ee16675c /src/client/views/collections/collectionFreeForm | |
| parent | 412ec3b38b2ee396b2709d824f02b0e417f5d967 (diff) | |
changed how treeview cycles between options for expanded views to show 'data' and some more adjustments.
Diffstat (limited to 'src/client/views/collections/collectionFreeForm')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index fa7e75202..d09d9b9d7 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -1210,7 +1210,7 @@ export class CollectionFreeFormView extends CollectionSubView<PanZoomDocument, P if (this.props.Document.annotationOn) { return this.rootDoc; } - const anchor = Docs.Create.TextanchorDocument({ title: StrCast(this.layoutDoc._viewType), annotationOn: this.rootDoc }); + const anchor = Docs.Create.TextanchorDocument({ title: "ViewSpec - " + StrCast(this.layoutDoc._viewType), annotationOn: this.rootDoc }); const proto = Doc.GetProto(anchor); proto[ViewSpecPrefix + "_viewType"] = this.layoutDoc._viewType; proto.docFilters = ObjectField.MakeCopy(this.layoutDoc.docFilters as ObjectField) || new List<string>([]); |
