From 89af80057b9e1a8526d2f8b5c7b3496dbbeffb82 Mon Sep 17 00:00:00 2001 From: Martin Raifer Date: Thu, 6 Mar 2025 15:18:57 +0100 Subject: [PATCH] link to release notes on github release, closes #10837 --- modules/ui/version.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/modules/ui/version.js b/modules/ui/version.js index 9c26b1bd5..094c622e5 100644 --- a/modules/ui/version.js +++ b/modules/ui/version.js @@ -40,7 +40,7 @@ export function uiVersion(context) { .append('a') .attr('class', 'badge') .attr('target', '_blank') - .attr('href', 'https://github.com/openstreetmap/iD/blob/release/CHANGELOG.md#whats-new') + .attr('href', `https://github.com/openstreetmap/iD/releases/tag/v${currVersion}`) .call(svgIcon('#maki-gift')) .call(uiTooltip() .title(() => t.append('version.whats_new', { version: currVersion }))