We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 76fc1f7 commit ce61de5Copy full SHA for ce61de5
1 file changed
docs/assets/js/scripts.js
@@ -34,7 +34,7 @@ document.addEventListener("DOMContentLoaded", function() {
34
const isLatest = v.aliases.includes("latest");
35
36
// If it's the latest, point to the /latest/ alias instead of the version folder
37
- opt.value = isLatest ? `/${base_path}/latest/` : `/${base_path}/${v.version}/`;
+ opt.value = isLatest ? `${base_path}/latest/` : `${base_path}/${v.version}/`;
38
39
opt.textContent = isLatest ? `${v.title} (latest)` : v.title;
40
0 commit comments