diff options
| author | bobzel <zzzman@gmail.com> | 2020-10-22 10:16:19 -0400 |
|---|---|---|
| committer | bobzel <zzzman@gmail.com> | 2020-10-22 10:16:19 -0400 |
| commit | 4609f550fcc8c3e9c7fd176faa80671d0b55d427 (patch) | |
| tree | 31cdd61555bf5030d9d2a3dd7425f85dea2df54a /src/client/views/collections | |
| parent | d09cf7ce455a45ad6a5e3e7096177bc500677bde (diff) | |
fixed warnings
Diffstat (limited to 'src/client/views/collections')
| -rw-r--r-- | src/client/views/collections/CollectionStackingView.tsx | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/views/collections/CollectionStackingView.tsx b/src/client/views/collections/CollectionStackingView.tsx index 882a7fdec..4880d342c 100644 --- a/src/client/views/collections/CollectionStackingView.tsx +++ b/src/client/views/collections/CollectionStackingView.tsx @@ -294,7 +294,6 @@ export class CollectionStackingView extends CollectionSubView<StackingDocument, const docs = this.childDocList; DragManager.docsBeingDragged = []; if (docs && newDocs.length) { - console.log(newDocs) const insertInd = dropInd === -1 ? docs.length : dropInd + dropAfter; const offset = newDocs.reduce((off, ndoc) => this.filteredChildren.find((fdoc, i) => ndoc === fdoc && i < insertInd) ? off + 1 : off, 0); newDocs.filter(ndoc => docs.indexOf(ndoc) !== -1).forEach(ndoc => docs.splice(docs.indexOf(ndoc), 1)); |
