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 77d6ee0 commit 2ebe679Copy full SHA for 2ebe679
src/tools/rustdoc-js/tester.js
@@ -437,7 +437,7 @@ async function loadSearchJS(doc_folder, resource_suffix) {
437
const staticFiles = path.join(doc_folder, "static.files");
438
const stringdexJs = mostRecentMatch(staticFiles, /stringdex.*\.js$/);
439
const stringdexModule = require(path.join(staticFiles, stringdexJs));
440
- const searchJs = mostRecentMatch(staticFiles, /search.*\.js$/);
+ const searchJs = mostRecentMatch(staticFiles, /search-[0-9a-f]{8}.*\.js$/);
441
const searchModule = require(path.join(staticFiles, searchJs));
442
globalThis.nonnull = (x, msg) => {
443
if (x === null) {
0 commit comments