Skip to content

Commit

Permalink
fix(terminal): close search input box (#1244) (#1251)
Browse files Browse the repository at this point in the history
Co-authored-by: Artin <[email protected]>
  • Loading branch information
life2015 and bytemain authored Jun 30, 2022
1 parent 72e0844 commit 7951cce
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,7 @@ export default observer(() => {
onChange={searchInput}
onKeyDown={searchKeyDown}
/>
<div className={getIcon('close')} onClick={searchService.close}></div>
<div className={getIcon('close')} onClick={() => searchService.close()}></div>
</div>
)}
{groups.map((group, index) => {
Expand Down

0 comments on commit 7951cce

Please sign in to comment.