fix(settings): remove invalid githubMirrorsItems

This commit is contained in:
InfinityPacer
2025-02-14 14:19:48 +08:00
parent 3df5d75c46
commit c119384c22
+5 -5
View File
@@ -236,9 +236,9 @@ const wallpaperItems = [
] ]
// 预设部分Github加速站 // 预设部分Github加速站
const githubMirrorsItems = [ const githubMirrorsItems: string[] = [
'https://mirror.ghproxy.com/', // GitHub Proxy // str: 'https://mirror.ghproxy.com/', // GitHub Proxy
'https://ghp.ci/', // GitHub Proxy 子站 // str: 'https://ghp.ci/', // GitHub Proxy 子站
] ]
// 预设部分PIP镜像站 // 预设部分PIP镜像站
@@ -687,7 +687,7 @@ onDeactivated(() => {
<VCombobox <VCombobox
v-model="SystemSettings.Advanced.GITHUB_PROXY" v-model="SystemSettings.Advanced.GITHUB_PROXY"
label="Github加速代理" label="Github加速代理"
placeholder="https://mirror.ghproxy.com/" placeholder="http(s)://host/"
hint="使用代理加速Github访问速度" hint="使用代理加速Github访问速度"
persistent-hint persistent-hint
:items="githubMirrorsItems" :items="githubMirrorsItems"
@@ -697,7 +697,7 @@ onDeactivated(() => {
<VCombobox <VCombobox
v-model="SystemSettings.Advanced.PIP_PROXY" v-model="SystemSettings.Advanced.PIP_PROXY"
label="PIP加速代理" label="PIP加速代理"
placeholder="https://pypi.tuna.tsinghua.edu.cn/simple" placeholder="http(s)://host"
hint="使用代理加速插件等pip库安装速度" hint="使用代理加速插件等pip库安装速度"
persistent-hint persistent-hint
:items="pipMirrorsItems" :items="pipMirrorsItems"