aboutsummaryrefslogtreecommitdiff
path: root/src/client/views/search
diff options
context:
space:
mode:
authorbobzel <zzzman@gmail.com>2020-08-21 15:40:58 -0400
committerbobzel <zzzman@gmail.com>2020-08-21 15:40:58 -0400
commit0dea458152552d6bc797d6e2d4a7d95759bcda64 (patch)
tree15d8ed76606095441482d9e4af8adbb9b46d8175 /src/client/views/search
parentcbacfc1e67b64dc4ce19b047f89a97f3dac0ce6b (diff)
fixed double-clicking icons to act like two single clicks
Diffstat (limited to 'src/client/views/search')
-rw-r--r--src/client/views/search/SearchBox.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/client/views/search/SearchBox.tsx b/src/client/views/search/SearchBox.tsx
index ed1dc6de6..27a0a452d 100644
--- a/src/client/views/search/SearchBox.tsx
+++ b/src/client/views/search/SearchBox.tsx
@@ -78,7 +78,7 @@ export class SearchBox extends ViewBoxBaseComponent<FieldViewProps, SearchBoxDoc
this._inputRef.current.focus();
this._searchbarOpen = true;
}
- })
+ });
componentWillUnmount() {
Object.values(this._disposers).forEach(disposer => disposer?.());