diff options
author | bobzel <zzzman@gmail.com> | 2024-05-19 02:29:27 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-05-19 02:29:27 -0400 |
commit | 33f51c59f5f75ff7e19eb3f47184685668596f8b (patch) | |
tree | 3d5c62e4f303b778d80447e05966c9f8b1500a26 | |
parent | 35d7bd49af6898356cd92196b9a2413770375a12 (diff) |
from last
-rw-r--r-- | src/client/views/collections/collectionFreeForm/MarqueeView.tsx | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx index 91c8c2ffa..98100becb 100644 --- a/src/client/views/collections/collectionFreeForm/MarqueeView.tsx +++ b/src/client/views/collections/collectionFreeForm/MarqueeView.tsx @@ -695,12 +695,11 @@ export class MarqueeView extends ObservableReactComponent<SubCollectionViewProps } else { (this.touchesLine(bounds) || this.boundingShape(bounds)) && selection.push(doc); } - console.log(doc['type']); }; if (docType) { this._props .activeDocuments() - .filter(doc => !doc.z && !doc._lockedPosition && doc['type'] === docType) + .filter(doc => !doc.z && !doc._lockedPosition && doc.type === docType) .map(selectFunc); } else { this._props |