1
Fork 0

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.
This commit is contained in:
Bauke 2019-11-10 23:19:27 +01:00
parent 3e313f2bb0
commit a3e52b627b
Signed by: Bauke
GPG Key ID: C1C0F29952BCF558
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ window.addEventListener(
const {version} = browser.runtime.getManifest(); const {version} = browser.runtime.getManifest();
versionSpan.setAttribute( versionSpan.setAttribute(
'href', 'href',
`https://gitlab.com/tildes-community/tildes-reextended/-/tags/v${version}` `https://gitlab.com/tildes-community/tildes-reextended/-/tags/${version}`
); );
versionSpan.textContent = `v${version}`; versionSpan.textContent = `v${version}`;