17982: Trigger loading saved/recent queries when clicking empty search bar
[arvados-workbench2.git] / src / views-components / search-bar / search-bar-view.tsx
index cab53403637c1b0770df4b0b070e70317bc32c56..284083477f00e2f4c13f1d13cee483367bbbf630 100644 (file)
@@ -128,10 +128,10 @@ const handleKeyDown = (e: React.KeyboardEvent, props: SearchBarViewProps) => {
 const handleInputClick = (e: React.MouseEvent, props: SearchBarViewProps) => {
     if (props.searchValue) {
         props.onSetView(SearchView.AUTOCOMPLETE);
-        props.openSearchView();
     } else {
-        props.closeView();
+        props.onSetView(SearchView.BASIC);
     }
+    props.openSearchView();
 };
 
 const handleDropdownClick = (e: React.MouseEvent, props: SearchBarViewProps) => {