aboutsummaryrefslogtreecommitdiff
path: root/src/client/views
diff options
context:
space:
mode:
authoranika-ahluwalia <anika.ahluwalia@gmail.com>2020-07-03 18:52:00 -0500
committeranika-ahluwalia <anika.ahluwalia@gmail.com>2020-07-03 18:52:00 -0500
commit397f9811b6675dce5e770082ee68435b7e560f7f (patch)
tree09cb1933ad5805c2df8fa32db2dadd8f85f24f51 /src/client/views
parented74b8b6d6c65a24803c4e0e68aa192a750d60fa (diff)
parenta979ebce6cf3b3aaa0fb6ea3870988b6edc6a889 (diff)
merge w master
Diffstat (limited to 'src/client/views')
-rw-r--r--src/client/views/collections/CollectionViewChromes.tsx2
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"