From 467ddf779e11130e28a77338e8f3574ed3d0af7e Mon Sep 17 00:00:00 2001 From: Katrina Prosise Date: Mon, 25 May 2026 06:28:34 -0400 Subject: [PATCH] Fix switcher urls Added the missing trailing slash to the urls used by the switcher. No QA steps taken. No related tracked issue, quick fix. Signed-off-by: Katrina Prosise --- source/_static/switcher.json | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/source/_static/switcher.json b/source/_static/switcher.json index 3e23bbc2..b64bdc3f 100644 --- a/source/_static/switcher.json +++ b/source/_static/switcher.json @@ -2,12 +2,12 @@ { "name": "dev (unstable)", "version": "dev", - "url": "https://docs.foundries.io/dev" + "url": "https://docs.foundries.io/dev/" }, { "name": "v97 (stable)", "version": "97", - "url": "https://docs.foundries.io/latest", + "url": "https://docs.foundries.io/latest/", "preferred": true }, { @@ -18,6 +18,6 @@ { "name": "…older", "version": "", - "url": "https://docs.foundries.io/releases" + "url": "https://docs.foundries.io/releases/" } ]