diff options
author | dg314 <david_grossman@brown.edu> | 2021-08-16 17:04:17 -0400 |
---|---|---|
committer | dg314 <david_grossman@brown.edu> | 2021-08-16 17:04:17 -0400 |
commit | a634580c224c4113b6c8a4b83f17532e86b33225 (patch) | |
tree | 9cf095543250ccab0d8298d708f8540489fc3524 | |
parent | 1330f03c7183e00d6de3b754e42a6e67251d8747 (diff) |
minor updates
-rw-r--r-- | src/client/views/search/SearchBox.tsx | 2 |
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); } } |