diff options
author | madelinegr <monika_hedman@brown.edu> | 2019-06-11 16:47:15 -0400 |
---|---|---|
committer | madelinegr <monika_hedman@brown.edu> | 2019-06-11 16:47:15 -0400 |
commit | e65fba03470cc38bc610baf4ff77fcc13cc08b74 (patch) | |
tree | fa2f9c00542802824d06b9ece5ee549df60a8d17 /src/client/views/collections/CollectionBaseView.tsx | |
parent | d9de5d5dc660d3c859590ece04fee5613621b56e (diff) |
lint errors fixed
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 5238ad114..1e42593d1 100644 --- a/src/client/views/collections/CollectionBaseView.tsx +++ b/src/client/views/collections/CollectionBaseView.tsx @@ -130,7 +130,7 @@ export class CollectionBaseView extends React.Component<CollectionViewProps> { @action.bound removeDocument(doc: Doc): boolean { - let docView = DocumentManager.Instance.getDocumentView(doc, this.props.ContainingCollectionView) + let docView = DocumentManager.Instance.getDocumentView(doc, this.props.ContainingCollectionView); docView && SelectionManager.DeselectDoc(docView); const props = this.props; //TODO This won't create the field if it doesn't already exist |