aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionView.tsx
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2019-09-16 09:12:28 -0400
committerbob <bcz@cs.brown.edu>2019-09-16 09:12:28 -0400
commit30ebba4ee0f8c957609589985ba76f25b0378af6 (patch)
treec071de81273a6ffadaf1700fd7a9c2738e230e1a /src/client/views/collections/CollectionView.tsx
parent045baaf436d310ea592a614b68ca9f8523e0d04a (diff)
parent15c529925821ad0812b2dfee774de7318f8551af (diff)
Merge branch 'master' of https://github.com/browngraphicslab/Dash-Web
Diffstat (limited to 'src/client/views/collections/CollectionView.tsx')
-rw-r--r--src/client/views/collections/CollectionView.tsx3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionView.tsx b/src/client/views/collections/CollectionView.tsx
index bce4eb427..548f663ec 100644
--- a/src/client/views/collections/CollectionView.tsx
+++ b/src/client/views/collections/CollectionView.tsx
@@ -95,8 +95,9 @@ export class CollectionView extends React.Component<FieldViewProps> {
}
subItems.push({ description: "Schema", event: () => this.props.Document.viewType = CollectionViewType.Schema, icon: "th-list" });
subItems.push({ description: "Treeview", event: () => this.props.Document.viewType = CollectionViewType.Tree, icon: "tree" });
+ subItems.push({ description: "Stacking", event: () => this.props.Document.viewType = CollectionViewType.Stacking, icon: "ellipsis-v" });
subItems.push({
- description: "Stacking", event: () => {
+ description: "Stacking (AutoHeight)", event: () => {
this.props.Document.viewType = CollectionViewType.Stacking;
this.props.Document.autoHeight = true
}, icon: "ellipsis-v"