Skip to content

Commit 3beb43b

Browse files
committed
Fix syntax error in searchtools.js by adding missing semicolon
1 parent 6b3258a commit 3beb43b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

docs/_static/searchtools.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -275,7 +275,7 @@ const Search = {
275275
const query = new URLSearchParams(window.location.search).get("q");
276276
const section = new URLSearchParams(window.location.search).get("section");
277277
const select = document
278-
.querySelector('select[name="section"]')
278+
.querySelector('select[name="section"]');
279279
document
280280
.querySelectorAll('input[name="q"]')
281281
.forEach((el) => (el.value = query));

0 commit comments

Comments
 (0)