Skip to content

Commit

Permalink
Fix usage of enable_search_shortcuts theme config value.
Browse files Browse the repository at this point in the history
The option value is not properly propagated to Java script.
  • Loading branch information
marxin committed Jun 17, 2022
1 parent c40bb72 commit 8d7eabd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion sphinx/themes/basic/static/documentation_options.js_t
Expand Up @@ -10,5 +10,5 @@ var DOCUMENTATION_OPTIONS = {
SOURCELINK_SUFFIX: '{{ sourcelink_suffix }}',
NAVIGATION_WITH_KEYS: {{ 'true' if theme_navigation_with_keys|tobool else 'false'}},
SHOW_SEARCH_SUMMARY: {{ 'true' if show_search_summary else 'false' }},
ENABLE_SEARCH_SHORTCUTS: {{ 'true' if enable_search_shortcuts|tobool else 'false'}},
ENABLE_SEARCH_SHORTCUTS: {{ 'true' if theme_enable_search_shortcuts|tobool else 'false'}},
};

0 comments on commit 8d7eabd

Please sign in to comment.