Skip to content

Commit

Permalink
fix: 修复同步配置预览链接
Browse files Browse the repository at this point in the history
  • Loading branch information
xream committed Jan 19, 2024
1 parent 2fd9b99 commit 967f84c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sub-store-front-end",
"version": "2.14.82",
"version": "2.14.83",
"private": true,
"scripts": {
"dev": "vite --host",
Expand Down
2 changes: 1 addition & 1 deletion src/components/ArtifactsListItem.vue
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ const sourceUrl = computed(() => {
let urlIncludeUnsupportedProxy = artifact.value.includeUnsupportedProxy ? `includeUnsupportedProxy=true` : '';
if (urlTarget && urlIncludeUnsupportedProxy) {
urlIncludeUnsupportedProxy = `&${urlIncludeUnsupportedProxy}`
} else {
} else if (urlIncludeUnsupportedProxy){
urlIncludeUnsupportedProxy = `?${urlIncludeUnsupportedProxy}`
}
return `${host.value}/download/${
Expand Down

0 comments on commit 967f84c

Please sign in to comment.