We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 75790fa commit 4c183cdCopy full SHA for 4c183cd
src/librustdoc/html/static/js/search.js
@@ -1724,6 +1724,10 @@ window.initSearch = rawSearchIndex => {
1724
`${typeFilter}</h1> in ${crates} </div>`;
1725
if (results.query.error !== null) {
1726
output += `<h3>Query parser error: "${results.query.error}".</h3>`;
1727
+ output += '<div id="titles">' +
1728
+ makeTabHeader(0, "In Names", ret_others[1]) +
1729
+ "</div>";
1730
+ currentTab = 0;
1731
} else if (results.query.foundElems <= 1 && results.query.returned.length === 0) {
1732
output += `<div id="titles">` +
1733
makeTabHeader(0, "In Names", ret_others[1]) +
0 commit comments