diff options
author | bobzel <zzzman@gmail.com> | 2024-05-18 23:15:49 -0400 |
---|---|---|
committer | bobzel <zzzman@gmail.com> | 2024-05-18 23:15:49 -0400 |
commit | 9badfc489f00afd10489f0dde0a3b9e21817feb5 (patch) | |
tree | b69d90fb3525d0bfca4a107ec1640e4706c0dfb6 /src/client/util/SelectionManager.ts | |
parent | 38d2d361aa723917b5721e2635933d2d8b9f483a (diff) |
more cardView cleanup
Diffstat (limited to 'src/client/util/SelectionManager.ts')
-rw-r--r-- | src/client/util/SelectionManager.ts | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/src/client/util/SelectionManager.ts b/src/client/util/SelectionManager.ts index d507e35ad..36b926053 100644 --- a/src/client/util/SelectionManager.ts +++ b/src/client/util/SelectionManager.ts @@ -68,7 +68,6 @@ export class SelectionManager { public static IsSelected = (doc?: Doc) => Array.from(doc?.[DocViews] ?? []).some(dv => dv?.IsSelected); public static get Views() { return this.Instance.SelectedViews; } // prettier-ignore public static get SelectedSchemaDoc() { return this.Instance.SelectedSchemaDocument; } // prettier-ignore - public static get Docs() { return this.Instance.SelectedViews.map(dv => dv.Document).filter(doc => doc?._type_collection !== CollectionViewType.Docking); } // prettier-ignore } |