diff options
| author | yipstanley <stanley_yip@brown.edu> | 2019-11-03 16:59:13 -0500 |
|---|---|---|
| committer | yipstanley <stanley_yip@brown.edu> | 2019-11-03 16:59:13 -0500 |
| commit | ca406ddce0a9b35ca9063f74979c952e080339f1 (patch) | |
| tree | 07bbc45be5891ebfbdd1131a35f28023b9ea77c0 /src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | |
| parent | 525e18727edbdaba578e1ace748ddfd9573a65a4 (diff) | |
some infrastructure stuff and bug fixes. not really any new features yet
Diffstat (limited to 'src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx')
| -rw-r--r-- | src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx index 5e2973368..9acffc952 100644 --- a/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx +++ b/src/client/views/collections/collectionFreeForm/CollectionFreeFormView.tsx @@ -107,7 +107,7 @@ export class CollectionFreeFormView extends CollectionSubView(PanZoomDocument) { added && this.updateCluster(newBox); return added; } - private selectDocuments = (docs: Doc[], ink: Map<any, any>[]) => { + private selectDocuments = (docs: Doc[], ink: { Document: Doc, Ink: Map<any, any> }[]) => { SelectionManager.DeselectAll(); docs.map(doc => DocumentManager.Instance.getDocumentView(doc)).map(dv => dv && SelectionManager.SelectDoc(dv, true)); ink.forEach(i => SelectionManager.SelectInk(i, true)); |
