diff options
| author | bob <bcz@cs.brown.edu> | 2019-05-09 14:40:03 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-05-09 14:40:03 -0400 |
| commit | 168cd36282087bbf9e0157352a129d90b20b7394 (patch) | |
| tree | 40f1f75e6e3e44c3da6bf4cb60ae5a713c65bd68 /src/client/views/collections/CollectionSchemaView.tsx | |
| parent | b83cfb1c48cced31f930e3f72a9c5ae503b81790 (diff) | |
fixed some compile errors
Diffstat (limited to 'src/client/views/collections/CollectionSchemaView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionSchemaView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionSchemaView.tsx b/src/client/views/collections/CollectionSchemaView.tsx index 6dd0e5935..ae949b2ed 100644 --- a/src/client/views/collections/CollectionSchemaView.tsx +++ b/src/client/views/collections/CollectionSchemaView.tsx @@ -276,7 +276,7 @@ export class CollectionSchemaView extends CollectionSubView(doc => doc) { } get documentKeysCheckList() { - const docs = Cast(this.props.Document[this.props.fieldKey], listSpec(Doc), []); + const docs = Cast(this.props.Document[this.props.fieldKey], listSpec(Doc), []).filter(d => d).map(d => d as Doc); let keys: { [key: string]: boolean } = {}; // bcz: ugh. this is untracked since otherwise a large collection of documents will blast the server for all their fields. // then as each document's fields come back, we update the documents _proxies. Each time we do this, the whole schema will be |
