aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionTreeView.tsx
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2020-01-22 18:21:05 -0500
committerbob <bcz@cs.brown.edu>2020-01-22 18:21:05 -0500
commit3d11941ebaac312bc72186af05f0a7969a39d7be (patch)
treefabd1c4321f1b5ae4cb385e805786d9177322c1b /src/client/views/collections/CollectionTreeView.tsx
parentbfebed91e12abca324d7a638adeb1da9755a9057 (diff)
slight improvement maybe to createDocExtension and scraper to use prefetch proxy
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.tsx')
-rw-r--r--src/client/views/collections/CollectionTreeView.tsx4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx
index 9776085c9..6b6fdff50 100644
--- a/src/client/views/collections/CollectionTreeView.tsx
+++ b/src/client/views/collections/CollectionTreeView.tsx
@@ -634,13 +634,13 @@ export class CollectionTreeView extends CollectionSubView(Document) {
}
ContextMenu.Instance.addItem({
description: "Buxton Layout", icon: "eye", event: () => {
- const { TextDocument, ImageDocument, MulticolumnDocument } = Docs.Create;
+ const { TextDocument, ImageDocument, MulticolumnDocument, TreeDocument } = Docs.Create;
const { Document } = this.props;
const fallbackImg = "http://www.cs.brown.edu/~bcz/face.gif";
const detailedLayout = Docs.Create.StackingDocument([
ImageDocument(fallbackImg, { title: "activeHero" }),
- MulticolumnDocument([], { title: "data", height: 100, onChildClick: ScriptField.MakeFunction(`containingCollection.resolvedDataDoc.activeHero = copyField(this.data)`, { containingCollection: Doc.name }) }),
+ TreeDocument([], { title: "data", height: 100, onChildClick: ScriptField.MakeFunction(`containingCollection.resolvedDataDoc.activeHero = copyField(this.data)`, { containingCollection: Doc.name }) }),
TextDocument({ title: "short_description", autoHeight: true }),
...["year", "company", "degrees_of_freedom"].map(key => TextDocument({ title: key, height: 30 }))
], { autoHeight: true, chromeStatus: "disabled", title: "detailed layout stack" });