aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionTreeView.tsx
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-01-24 09:22:20 -0500
committerBob Zeleznik <zzzman@gmail.com>2020-01-24 09:22:20 -0500
commit1d97f165631fd11570527b9123befeaab43e0b64 (patch)
tree4d6ce270bd93aafbf1af7f54837cd31ecd3fc207 /src/client/views/collections/CollectionTreeView.tsx
parent1af12e99d3f20999eac2c67f27c4449251a64001 (diff)
making right split view be readable/scrollable instead of fit to contents
Diffstat (limited to 'src/client/views/collections/CollectionTreeView.tsx')
-rw-r--r--src/client/views/collections/CollectionTreeView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTreeView.tsx b/src/client/views/collections/CollectionTreeView.tsx
index 21f2bc326..92317b317 100644
--- a/src/client/views/collections/CollectionTreeView.tsx
+++ b/src/client/views/collections/CollectionTreeView.tsx
@@ -640,7 +640,7 @@ export class CollectionTreeView extends CollectionSubView(Document) {
MulticolumnDocument([], { 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" });
+ ], { _chromeStatus: "disabled", title: "detailed layout stack" });
detailedLayout.isTemplateDoc = makeTemplate(detailedLayout);
const cardLayout = ImageDocument(fallbackImg, { isTemplateDoc: true, isTemplateForField: "hero", }); // this acts like a template doc and a template field ... a little weird, but seems to work?