From a3e52b627bedd423fae97aa3b9b524ed92c07944 Mon Sep 17 00:00:00 2001 From: Bauke Date: Sun, 10 Nov 2019 23:19:27 +0100 Subject: [PATCH] Fix: Remove the "v" from the version link. Tags don't have an actual "v" in front of them so this makes the link point to the right place. --- source/ts/options.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/ts/options.ts b/source/ts/options.ts index bbf5c71..1d54326 100644 --- a/source/ts/options.ts +++ b/source/ts/options.ts @@ -20,7 +20,7 @@ window.addEventListener( const {version} = browser.runtime.getManifest(); versionSpan.setAttribute( 'href', - `https://gitlab.com/tildes-community/tildes-reextended/-/tags/v${version}` + `https://gitlab.com/tildes-community/tildes-reextended/-/tags/${version}` ); versionSpan.textContent = `v${version}`;