Skip to content

Commit

Permalink
Fix bug in language switcher due to lack of trailing slash in base URL (
Browse files Browse the repository at this point in the history
  • Loading branch information
CAM-Gerlach authored Nov 26, 2024
1 parent ec9d97d commit 98004cb
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions doc/_static/js/language-switcher.js
Original file line number Diff line number Diff line change
Expand Up @@ -1002,12 +1002,12 @@ async function fetchAndUseLanguages() {
"language": "en",
"name": "English",
"preferred": true,
"url": "https://docs.spyder-ide.org/5/en"
"url": "https://docs.spyder-ide.org/5/en/"
},
{
"language": "es",
"name": "Español",
"url": "https://docs.spyder-ide.org/5/es"
"url": "https://docs.spyder-ide.org/5/es/"
}
]

Expand Down

0 comments on commit 98004cb

Please sign in to comment.