mirror of
https://example.com
synced 2024-11-22 12:26:38 +09:00
fix: return the correct latest version
This commit is contained in:
parent
6a46044cf4
commit
7042f038f1
1 changed files with 1 additions and 1 deletions
|
@ -20,7 +20,7 @@ export default define(meta, paramDef, async () => {
|
|||
)
|
||||
.then((response) => response.json())
|
||||
.then((data) => {
|
||||
tag_name = data[0].name;
|
||||
tag_name = data[0].name.slice(1);
|
||||
});
|
||||
|
||||
return {
|
||||
|
|
Loading…
Reference in a new issue