From f4eab92aa019af4a3d551fdccaea8c37aae4eb3c Mon Sep 17 00:00:00 2001 From: Sandra McCann Date: Tue, 23 Feb 2021 15:12:54 -0500 Subject: [PATCH] fix core version switcher (#73704) --- docs/docsite/sphinx_conf/core_conf.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docs/docsite/sphinx_conf/core_conf.py b/docs/docsite/sphinx_conf/core_conf.py index 439ae405908..bc39cf17699 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 ), }