diff options
author | geireann <geireann.lindfield@gmail.com> | 2021-08-05 17:27:27 -0400 |
---|---|---|
committer | geireann <geireann.lindfield@gmail.com> | 2021-08-05 17:27:27 -0400 |
commit | 576c74eb596d19a7dfbef832ad626f5fcc4b8c71 (patch) | |
tree | 4f3d3d2e0c3224a3c7664eb0126df68dfff92775 /src | |
parent | 334a0d582ab71bbfb347809e584a3ed76ad3621a (diff) |
Update SearchBox.tsx
Diffstat (limited to 'src')
-rw-r--r-- | src/client/views/search/SearchBox.tsx | 2 |
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); } } |