diff options
| author | bob <bcz@cs.brown.edu> | 2019-10-21 16:38:33 -0400 |
|---|---|---|
| committer | bob <bcz@cs.brown.edu> | 2019-10-21 16:38:33 -0400 |
| commit | a27db333f528f7381fda591094aebba684a80639 (patch) | |
| tree | cc4fd0a18574db57863a305b6c57618f19a815a8 /src/client/views/collections/CollectionBaseView.tsx | |
| parent | 8efea66fd5723becf36dd6e3b2a95435d8528748 (diff) | |
more fixes after removed fieldExt
Diffstat (limited to 'src/client/views/collections/CollectionBaseView.tsx')
| -rw-r--r-- | src/client/views/collections/CollectionBaseView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionBaseView.tsx b/src/client/views/collections/CollectionBaseView.tsx index fa543cc01..9f3d33e6f 100644 --- a/src/client/views/collections/CollectionBaseView.tsx +++ b/src/client/views/collections/CollectionBaseView.tsx @@ -100,7 +100,7 @@ export class CollectionBaseView extends React.Component<CollectionViewProps> { let targetDataDoc = Doc.GetProto(this.props.Document); let targetField = this.props.fieldKey; Doc.AddDocToList(targetDataDoc, targetField, doc); - let extension = Doc.fieldExtensionDoc(targetDataDoc, targetField); + let extension = Doc.fieldExtensionDoc(targetDataDoc, targetField); // set metadata about the field being rendered (ie, the set of documents) on an extension field for that field extension && (extension.lastModified = new DateField(new Date(Date.now()))); Doc.GetProto(doc).lastOpened = new DateField; return true; |
