Hide section titles in autosuggest if returned hits are an empty list

This commit is contained in:
Piotr Janosz
2019-07-20 16:48:14 +02:00
committed by fabioberger
parent d95b520512
commit 520c6fa426

View File

@@ -61,7 +61,11 @@ export const CustomAutoComplete: React.FC<AutoCompleteProps> = ({
'0x_tools_test': 'Tools',
'0x_guides_test': 'Guides',
};
return <p>{titles[section.index]}</p>;
if (section.hits.length) {
return <p>{titles[section.index]}</p>;
}
return null;
};
const getSectionSuggestions = (section: HitProps): string => section.hits;