diff options
| author | bobzel <zzzman@gmail.com> | 2020-07-03 17:20:30 -0400 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-07-03 17:20:30 -0400 |
| commit | a979ebce6cf3b3aaa0fb6ea3870988b6edc6a889 (patch) | |
| tree | ab8f94a665da7f53c064946002a37fda988aaebc /src/client/views/collections | |
| parent | da0b78bb21d29cb861e1b684023b991b9f95e62b (diff) | |
| parent | eced22296a311ff796d7e9f797478fe7452577a4 (diff) | |
Merge pull request #431 from browngraphicslab/mobile_revision_direct
dash mobile updates
Diffstat (limited to 'src/client/views/collections')
| -rw-r--r-- | src/client/views/collections/CollectionViewChromes.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionViewChromes.tsx b/src/client/views/collections/CollectionViewChromes.tsx index c20f2162a..7f1fe7649 100644 --- a/src/client/views/collections/CollectionViewChromes.tsx +++ b/src/client/views/collections/CollectionViewChromes.tsx @@ -300,7 +300,7 @@ export class CollectionViewBaseChrome extends React.Component<CollectionViewChro onPointerDown={stopPropagation} onChange={this.viewChanged} value={StrCast(this.props.CollectionView.props.Document._viewType)}> - {Object.values(CollectionViewType).map(type => ["invalid", "docking"].includes(type) ? (null) : ( + {Object.values(CollectionViewType).map(type => [CollectionViewType.Invalid, CollectionViewType.Docking].includes(type) ? (null) : ( <option key={Utils.GenerateGuid()} className="collectionViewBaseChrome-viewOption" |
