aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-25 13:17:54 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-06-25 13:17:54 -0400
commitf8232f2d210df5dcce352a51df7079095b1d1123 (patch)
tree34c8e88bde1e752448572289615d08fd92defab6 /src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
parentaad1ca740bcbad129dc23a5d8f71e3caae787d43 (diff)
enhanced refselect logic
Diffstat (limited to 'src/client/views/collections/collectionSchema/CollectionSchemaView.tsx')
-rw-r--r--src/client/views/collections/collectionSchema/CollectionSchemaView.tsx3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
index 32106e3be..583829d6c 100644
--- a/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
+++ b/src/client/views/collections/collectionSchema/CollectionSchemaView.tsx
@@ -296,7 +296,6 @@ export class CollectionSchemaView extends CollectionSubView() {
break;
}
case 'P': {
- console.log(this._cellHighlightColors)
break;
}
default:
@@ -687,14 +686,12 @@ export class CollectionSchemaView extends CollectionSubView() {
@action
deselectCell = (doc: Doc) => {
- console.log('single deselect called')
this._selectedCells && (this._selectedCells = this._selectedCells.filter(d => d !== doc));
if (this.rowIndex(doc) === this._lowestSelectedIndex) this._lowestSelectedIndex = Math.min(...this._selectedDocs.map(d => this.rowIndex(d)));
};
@action
deselectAllCells = () => {
- console.log('deselectall called')
this._selectedCells = [];
this._lowestSelectedIndex = -1;
};