diff options
author | eeng5 <eleanor_eng@brown.edu> | 2019-08-26 16:17:51 -0400 |
---|---|---|
committer | eeng5 <eleanor_eng@brown.edu> | 2019-08-26 16:17:51 -0400 |
commit | 25d9d8d9a1fdd38fd27cf77e0385b7482fc8f4a8 (patch) | |
tree | 2bfbde25423477c5fe2ca6a32f223fb1cac4b7f1 /src | |
parent | 6770b483ad4ec1bfec8733ee86dd67e9146bf474 (diff) |
sorting menu added to masonry
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/collections/CollectionViewChromes.tsx | 5 |
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; } |