aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/client/views/search/SearchBox.tsx2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/client/views/search/SearchBox.tsx b/src/client/views/search/SearchBox.tsx
index 66012e3f4..9150b2e39 100644
--- a/src/client/views/search/SearchBox.tsx
+++ b/src/client/views/search/SearchBox.tsx
@@ -222,6 +222,7 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc
*/
@action
submitSearch = async () => {
+ console.log("submit search");
this.resetSearch();
let query = StrCast(this._searchString);
@@ -229,6 +230,7 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc
this._results = [];
if (query) {
+ console.log("query: " + query);
this.searchCollection(query);
}
}