aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionTimeView.tsx
diff options
context:
space:
mode:
authorbob <bcz@cs.brown.edu>2020-02-04 10:38:14 -0500
committerbob <bcz@cs.brown.edu>2020-02-04 10:38:14 -0500
commit92a5efa6876db1a497640aeb13fef5c8d99b102d (patch)
tree7d10bfd9e0cfb3cd5c715410c645248571fdaff3 /src/client/views/collections/CollectionTimeView.tsx
parent72f50feacb1c023d093b8169ef85e1e7773aa483 (diff)
fixing layout stuff
Diffstat (limited to 'src/client/views/collections/CollectionTimeView.tsx')
-rw-r--r--src/client/views/collections/CollectionTimeView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionTimeView.tsx b/src/client/views/collections/CollectionTimeView.tsx
index 253dfa890..d1e2844df 100644
--- a/src/client/views/collections/CollectionTimeView.tsx
+++ b/src/client/views/collections/CollectionTimeView.tsx
@@ -43,7 +43,7 @@ export class CollectionTimeView extends CollectionSubView(doc => doc) {
@computed get _allFacets() {
const facets = new Set<string>();
- this.childDocs.forEach(child => Object.keys(Doc.GetProto(child)).forEach(key => facets.add(key)));
+ //this.childDocs.forEach(child => Object.keys(Doc.GetProto(child)).forEach(key => facets.add(key)));
return facets.toArray();
}