summaryrefslogtreecommitdiff
path: root/docs/docsite/sphinx_conf
diff options
context:
space:
mode:
authorSandra McCann <samccann@redhat.com>2021-02-23 15:12:54 -0500
committerGitHub <noreply@github.com>2021-02-23 14:12:54 -0600
commitf4eab92aa019af4a3d551fdccaea8c37aae4eb3c (patch)
treeb660363fe3d1dc5ada453796a3c5c0365cf9ea0d /docs/docsite/sphinx_conf
parent11f1177e6c5b823ca8acbd8877b2ce91afddc382 (diff)
downloadansible-f4eab92aa019af4a3d551fdccaea8c37aae4eb3c.tar.gz
fix core version switcher (#73704)
Diffstat (limited to 'docs/docsite/sphinx_conf')
-rw-r--r--docs/docsite/sphinx_conf/core_conf.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/docsite/sphinx_conf/core_conf.py b/docs/docsite/sphinx_conf/core_conf.py
index 439ae40590..bc39cf1769 100644
--- a/docs/docsite/sphinx_conf/core_conf.py
+++ b/docs/docsite/sphinx_conf/core_conf.py
@@ -166,9 +166,9 @@ html_context = {
'github_root_dir': 'devel/lib/ansible',
'github_cli_version': 'devel/lib/ansible/cli/',
'current_version': version,
- 'latest_version': '2.10',
+ 'latest_version': 'devel',
# list specifically out of order to make latest work
- 'available_versions': ('devel'),
+ 'available_versions': ('devel',),
'css_files': ('_static/ansible.css', # overrides to the standard theme
),
}