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:
parent
3e313f2bb0
commit
a3e52b627b
|
@ -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}`;
|
||||
|
||||
|
|
Loading…
Reference in New Issue