aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authoreeng5 <eleanor_eng@brown.edu>2019-08-26 16:17:51 -0400
committereeng5 <eleanor_eng@brown.edu>2019-08-26 16:17:51 -0400
commit25d9d8d9a1fdd38fd27cf77e0385b7482fc8f4a8 (patch)
tree2bfbde25423477c5fe2ca6a32f223fb1cac4b7f1
parent6770b483ad4ec1bfec8733ee86dd67e9146bf474 (diff)
sorting menu added to masonry
-rw-r--r--src/client/views/collections/CollectionViewChromes.tsx5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/client/views/collections/CollectionViewChromes.tsx b/src/client/views/collections/CollectionViewChromes.tsx
index 4c536fabe..6ed9b3253 100644
--- a/src/client/views/collections/CollectionViewChromes.tsx
+++ b/src/client/views/collections/CollectionViewChromes.tsx
@@ -232,6 +232,11 @@ export class CollectionViewBaseChrome extends React.Component<CollectionViewChro
CollectionView={this.props.CollectionView}
type={this.props.type}
/>);
+ case CollectionViewType.Masonry: return (
+ <CollectionStackingViewChrome
+ key="collchrome"
+ CollectionView={this.props.CollectionView}
+ type={this.props.type} />);
default:
return null;
}