From 54944e2866a1201c11a025f013f1a1527a9ad885 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?K=C3=A9vin=20Commaille?= <76261501+zecakeh@users.noreply.github.com> Date: Tue, 16 Dec 2025 18:11:47 +0100 Subject: [PATCH] Fix version selector's historical URL (#2268) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * Fix version selector's historical URL Regression because the function signature changed in #2261, but this call was not updated. Signed-off-by: Kévin Commaille * Add changelog Signed-off-by: Kévin Commaille --------- Signed-off-by: Kévin Commaille --- assets/js/versions.template.js | 2 +- changelogs/internal/newsfragments/2268.clarification | 1 + 2 files changed, 2 insertions(+), 1 deletion(-) create mode 100644 changelogs/internal/newsfragments/2268.clarification diff --git a/assets/js/versions.template.js b/assets/js/versions.template.js index 1554ad26..01a3ffc8 100644 --- a/assets/js/versions.template.js +++ b/assets/js/versions.template.js @@ -110,5 +110,5 @@ fetch(url) } // For historical versions, simply link to the changelog - appendVersion(ul, "historical", '{{ (site.GetPage "changelog/historical").RelPermalink }}'); + appendVersion(ul, "historical", "historical", '{{ (site.GetPage "changelog/historical").RelPermalink }}'); }); diff --git a/changelogs/internal/newsfragments/2268.clarification b/changelogs/internal/newsfragments/2268.clarification new file mode 100644 index 00000000..468f55d5 --- /dev/null +++ b/changelogs/internal/newsfragments/2268.clarification @@ -0,0 +1 @@ +Add version picker in the navbar.