fix: prevent including extra params in repository name on GitHub Card
fix #3171
This commit is contained in:
parent
b26683ba90
commit
9636020d6c
1 changed files with 1 additions and 1 deletions
|
|
@ -69,7 +69,7 @@ const meta = computed(() => {
|
||||||
user,
|
user,
|
||||||
titleUrl: `https://github.com/${user}${repo ? `/${repo}` : ''}`,
|
titleUrl: `https://github.com/${user}${repo ? `/${repo}` : ''}`,
|
||||||
details,
|
details,
|
||||||
repo: repo.split('?')[0],
|
repo: repo?.split('?')[0],
|
||||||
number,
|
number,
|
||||||
avatar,
|
avatar,
|
||||||
author: author
|
author: author
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue