aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-03-21 00:53:19 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-03-21 00:53:19 -0400
commitc37dd6ab26b2cb00fb6c11da21b69200d870435a (patch)
tree5a2bf4d531f3dd4d0d4638984d852352ba31ff7c
parent9ccbc0a6d6f6fffbc479d37ac2a880eafe85c65d (diff)
deselectCells -> ckearSelection in selectCell
-rw-r--r--src/client/views/collections/collectionSchema/CollectionSchemaView.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
index e722e774d..d583ffd03 100644
--- a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
+++ b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
@@ -453,7 +453,7 @@ export class CollectionSchemaView extends CollectionSubView() {
@action
selectCell = (doc: Doc, index: number, shiftKey: boolean) => {
- !shiftKey && this.deselectAllCells();
+ !shiftKey && this.clearSelection();
!this._selectedCells && (this._selectedCells = []);
this._selectedCells.push(doc);
this._selectedCol = index;