We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent afb7100 commit d6b2dacCopy full SHA for d6b2dac
src/components/Search.tsx
@@ -41,7 +41,8 @@ export default function Search() {
41
label="Search"
42
size='small'
43
onFocus={() => setopen(true)}
44
- onBlur={() => setopen(false)}
+ // disabled as prevented clicks on the input in some cases
45
+ // onBlur={(e) => setopen(false)}
46
onChange={e => {
47
set_has_text(!!e.target.value);
48
refine(e.target.value);
@@ -78,7 +79,6 @@ function SearchResults() {
78
79
}
80
81
function fu(input: any) {
- console.error(input);
82
const {project, displayName, brief} = input
83
const tertiary = displayName != project ? project : undefined;
84
return <ListItem key={project} disableGutters disablePadding dense>
0 commit comments