aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionCardDeckView.tsx
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2024-09-20 15:01:28 -0400
committerbobzel <zzzman@gmail.com>2024-09-20 15:01:28 -0400
commit03374621c3739768850e4e183fbb5d1c278b2290 (patch)
treee7f8df753e04a0b5a3fbe6bc4ca7d426cacb66c6 /src/client/views/collections/CollectionCardDeckView.tsx
parent650ddd4c72510ed29d023d4861dedede0737d3b9 (diff)
removed assignment of OR filter mode from card view. not sure it's needed, but shouldn't be set automatically anyway.
Diffstat (limited to 'src/client/views/collections/CollectionCardDeckView.tsx')
-rw-r--r--src/client/views/collections/CollectionCardDeckView.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionCardDeckView.tsx b/src/client/views/collections/CollectionCardDeckView.tsx
index d9c27254a..70b751f4c 100644
--- a/src/client/views/collections/CollectionCardDeckView.tsx
+++ b/src/client/views/collections/CollectionCardDeckView.tsx
@@ -99,8 +99,6 @@ export class CollectionCardView extends CollectionSubView() {
};
componentDidMount() {
- this.Document.childFilters_boolean = 'OR'; // bcz: really shouldn't be assigning to fields from within didMount -- this should be a default/override beahavior somehow
-
// Reaction to cardSort changes
this._disposers.sort = reaction(
() => GPTPopup.Instance.visible,