Skip to content

Commit f7a1dbf

Browse files
authored
Fix facetted search (#2066)
* Fix syntax error in searchtools.js by adding missing semicolon * Rename search styling file and update CSS references in documentation
1 parent 6b3258a commit f7a1dbf

3 files changed

Lines changed: 2 additions & 2 deletions

File tree

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));

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -277,7 +277,7 @@
277277
# "<project> v<release> documentation".
278278
html_title = "%(project)s v%(release)s" % {"project": project, "release": release}
279279

280-
html_css_files = ["documentation.css", ("print.css", {"media": "print"})]
280+
html_css_files = ["search.css", ("print.css", {"media": "print"})]
281281
html_js_files = []
282282
html_extra_path = [
283283
"robots.txt",

0 commit comments

Comments
 (0)