aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2023-04-17 15:09:28 -0400
committerbobzel <zzzman@gmail.com>2023-04-17 15:09:28 -0400
commitbc0e32b2d4099faff7f93128c20c814a234e9142 (patch)
tree8c7086c108883feb1b1cf94dbd8cbcdc6ea067ce
parent62f80ef79e6e592602ad8e4d4cc81ce317f1260c (diff)
removed unused code
-rw-r--r--src/client/views/collections/CollectionView.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/collections/CollectionView.tsx b/src/client/views/collections/CollectionView.tsx
index f73cbcb78..cfb9310b6 100644
--- a/src/client/views/collections/CollectionView.tsx
+++ b/src/client/views/collections/CollectionView.tsx
@@ -65,8 +65,6 @@ interface CollectionViewProps_ extends FieldViewProps {
AddToMap?: (treeViewDoc: Doc, index: number[]) => void;
RemFromMap?: (treeViewDoc: Doc, index: number[]) => void;
hierarchyIndex?: number[]; // hierarchical index of a document up to the rendering root (primarily used for tree views)
- // for animation trail in-between selection
- isTrailBox?: boolean;
}
export interface CollectionViewProps extends React.PropsWithChildren<CollectionViewProps_> {}
@observer