aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-05-19 02:29:27 -0400
committerbobzel <zzzman@gmail.com>2024-05-19 02:29:27 -0400
commit33f51c59f5f75ff7e19eb3f47184685668596f8b (patch)
tree3d5c62e4f303b778d80447e05966c9f8b1500a26 /src
parent35d7bd49af6898356cd92196b9a2413770375a12 (diff)
from last
Diffstat (limited to 'src')
-rw-r--r--src/client/views/collections/collectionFreeForm/MarqueeView.tsx3
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