aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
diff options
context:
space:
mode:
authorNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-03-21 00:55:34 -0400
committerNathan-SR <144961007+Nathan-SR@users.noreply.github.com>2024-03-21 00:55:34 -0400
commitefcacfa867ac7ac39d97ed2fe33c1311b912ca0f (patch)
tree1e1bf4c5621c9a590370a8d6d883192cc883e257 /src/client/views/collections/collectionSchema/SchemaTableCell.tsx
parentc37dd6ab26b2cb00fb6c11da21b69200d870435a (diff)
the decommenting
Diffstat (limited to 'src/client/views/collections/collectionSchema/SchemaTableCell.tsx')
-rw-r--r--src/client/views/collections/collectionSchema/SchemaTableCell.tsx3
1 files changed, 0 insertions, 3 deletions
diff --git a/src/client/views/collections/collectionSchema/SchemaTableCell.tsx b/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
index 52c34e8d6..1c4520ae2 100644
--- a/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
+++ b/src/client/views/collections/collectionSchema/SchemaTableCell.tsx
@@ -111,7 +111,6 @@ export class SchemaTableCell extends ObservableReactComponent<SchemaTableCellPro
@computed get selected() {
const selected: Doc[] | undefined = this._props.selectedCells();
let istrue = this._props.isRowActive() && (selected && selected?.filter(doc => doc === this._props.Document).length !== 0) && this._props.selectedCol() === this._props.col;
- console.log("col: " + this._props.col + " selCol: " + this._props.selectedCol() + " true: " + istrue);
return istrue;
}
@@ -184,8 +183,6 @@ export class SchemaTableCell extends ObservableReactComponent<SchemaTableCellPro
<div
className="schema-table-cell"
onPointerDown={action(e => {
- console.log(e);
- console.log(e.shiftKey);
const shift: boolean = e.shiftKey;
!this.selected && this._props.selectCell(this._props.Document, this._props.col, shift)}
)}