fix: prevent including extra params in repository name on GitHub Card
fix #3171
This commit is contained in:
parent
414adb5a71
commit
5d489c8640
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: repo.split('?')[0],
|
||||||
number,
|
number,
|
||||||
avatar,
|
avatar,
|
||||||
author: author
|
author: author
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue