aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/collections/CollectionSchemaCells.tsx
diff options
context:
space:
mode:
authorandy temp <andytemp@Kates-MBP.fios-router.home>2020-07-22 22:39:44 -0400
committerandy temp <andytemp@Kates-MBP.fios-router.home>2020-07-22 22:39:44 -0400
commitd4ff3975ee3b72a7869535bf8d9fc78039203aed (patch)
tree26012f78d9de67d2c21777e530020a1a4e39928b /src/client/views/collections/CollectionSchemaCells.tsx
parentfd741cddf64fe1b068b7a1de5bc3840798afe75d (diff)
search
Diffstat (limited to 'src/client/views/collections/CollectionSchemaCells.tsx')
-rw-r--r--src/client/views/collections/CollectionSchemaCells.tsx10
1 files changed, 1 insertions, 9 deletions
diff --git a/src/client/views/collections/CollectionSchemaCells.tsx b/src/client/views/collections/CollectionSchemaCells.tsx
index b1c3705ca..11f0edf23 100644
--- a/src/client/views/collections/CollectionSchemaCells.tsx
+++ b/src/client/views/collections/CollectionSchemaCells.tsx
@@ -246,7 +246,6 @@ export class CollectionSchemaCell extends React.Component<CellProps> {
trace();
let positions = [];
if (StrCast(this.props.Document._searchString) !== "") {
- console.log(StrCast(this.props.Document._searchString));
const cfield = ComputedField.WithoutComputed(() => FieldValue(props.Document[props.fieldKey]));
let term = "";
if (cfield!==undefined){
@@ -262,7 +261,6 @@ export class CollectionSchemaCell extends React.Component<CellProps> {
}
let search = StrCast(this.props.Document._searchString)
let start = term.indexOf(search) as number;
- console.log(start);
let tally = 0;
if (start!==-1){
positions.push(start);
@@ -277,7 +275,6 @@ export class CollectionSchemaCell extends React.Component<CellProps> {
positions.pop();
}
}
- console.log(positions.length);
return (
<div className="collectionSchemaView-cellContainer" style={{ cursor: fieldIsDoc ? "grab" : "auto" }} ref={dragRef} onPointerDown={this.onPointerDown} onPointerEnter={onPointerEnter} onPointerLeave={onPointerLeave}>
<div className={className} ref={this._focusRef} onPointerDown={onItemDown} tabIndex={-1}>
@@ -299,18 +296,14 @@ export class CollectionSchemaCell extends React.Component<CellProps> {
// return "0";
// } else {
const cfield = ComputedField.WithoutComputed(() => FieldValue(props.Document[props.fieldKey]));
- console.log(cfield);
if (cfield!==undefined){
if (cfield.Text!==undefined){
- console.log
- return(cfield.Text)
+ return(cfield.Text);
}
else if (StrCast(cfield)){
- console.log("strcast");
return StrCast(cfield);
}
else {
- console.log("numcast");
return String(NumCast(cfield));
}
}
@@ -325,7 +318,6 @@ export class CollectionSchemaCell extends React.Component<CellProps> {
return "0";
} else {
const cfield = ComputedField.WithoutComputed(() => FieldValue(props.Document[props.fieldKey]));
- console.log(cfield);
if (type === "number") {
return StrCast(cfield);
}