We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8a8ef5e commit 5e43c3eCopy full SHA for 5e43c3e
src/components/Search.tsx
@@ -78,11 +78,12 @@ function SearchResults() {
78
}
79
80
function fu(input: any) {
81
+ console.error(input);
82
const {project, displayName, brief} = input
83
const tertiary = displayName != project ? project : undefined;
84
return <ListItem key={project} disableGutters disablePadding dense>
85
<ListItemButton href={`/pkgs/${project}/`} dense>
- <ListItemText primary={displayName} secondary={brief || tertiary} />
86
+ <ListItemText primary={displayName || project} secondary={brief || tertiary} />
87
</ListItemButton>
88
</ListItem>
89
0 commit comments