aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authordg314 <david_grossman@brown.edu>2021-08-16 17:04:17 -0400
committerdg314 <david_grossman@brown.edu>2021-08-16 17:04:17 -0400
commita634580c224c4113b6c8a4b83f17532e86b33225 (patch)
tree9cf095543250ccab0d8298d708f8540489fc3524 /src
parent1330f03c7183e00d6de3b754e42a6e67251d8747 (diff)
minor updates
Diffstat (limited to 'src')
-rw-r--r--src/client/views/search/SearchBox.tsx2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/client/views/search/SearchBox.tsx b/src/client/views/search/SearchBox.tsx
index fe6b5d2b0..b07879674 100644
--- a/src/client/views/search/SearchBox.tsx
+++ b/src/client/views/search/SearchBox.tsx
@@ -223,7 +223,6 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc
*/
@action
submitSearch = async () => {
- console.log("submit search");
this.resetSearch();
let query = StrCast(this._searchString);
@@ -231,7 +230,6 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc
this._results = [];
if (query) {
- console.log("query: " + query);
this.searchCollection(query);
}
}