aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections
diff options
context:
space:
mode:
authorBob Zeleznik <zzzman@gmail.com>2020-04-02 19:39:03 -0400
committerBob Zeleznik <zzzman@gmail.com>2020-04-02 19:39:03 -0400
commitb4958eac84339dd7a88c964a9c52e89481048f55 (patch)
treedc8eb709e7b7910f62e1f0727c3d77a57d4bef38 /src/client/views/collections
parentbb351bcf0a56be9708c6c833c8023300e26223c1 (diff)
supported uploads of images ending with .webp
Diffstat (limited to 'src/client/views/collections')
-rw-r--r--src/client/views/collections/CollectionView.tsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/client/views/collections/CollectionView.tsx b/src/client/views/collections/CollectionView.tsx
index b6ce2f3a9..df1770ffe 100644
--- a/src/client/views/collections/CollectionView.tsx
+++ b/src/client/views/collections/CollectionView.tsx
@@ -429,9 +429,9 @@ export class CollectionView extends Touchable<FieldViewProps> {
Document={facetCollection}
backgroundColor={this.filterBackground}
fieldKey={`${this.props.fieldKey}-filter`}
- moveDocument={(doc: Doc) => false}
- removeDocument={(doc: Doc) => false}
- addDocument={(doc: Doc) => false} />
+ moveDocument={returnFalse}
+ removeDocument={returnFalse}
+ addDocument={returnFalse} />
</div>
</div>;
}