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 722b7e6 commit 9d17febCopy full SHA for 9d17feb
pytorch_sphinx_theme2/templates/search-field-custom.html
@@ -60,7 +60,11 @@
60
61
// Check if the URL contains /stable/ or /tutorials/
62
const currentUrl = window.location.href;
63
- const shouldDefaultToGoogle = currentUrl.includes('/stable/') || currentUrl.includes('/tutorials/');
+ // TODO: We've had reports that the google programmable search is returning stale documentation,
64
+ // Simple reproduction is to turn google search on and search for multinomial which will
65
+ // result in returning 1.8.1 documentation.
66
+ // We should turn this back on when we resolve that bug.
67
+ const shouldDefaultToGoogle = false;
68
const savedPreference = localStorage.getItem('searchPreference');
69
70
// Set initial state
0 commit comments