mirror of
https://github.com/Wei-Shaw/claude-relay-service.git
synced 2026-05-13 18:26:37 +00:00
Merge pull request #137 from Alfonsxh/fix/api-key-dedicated-account-dropdown
fix: 修复创建 API Key 时专属账号下拉框无选项的问题
This commit is contained in:
@@ -6,8 +6,8 @@
|
|||||||
"scripts": {
|
"scripts": {
|
||||||
"start": "node src/app.js",
|
"start": "node src/app.js",
|
||||||
"dev": "nodemon src/app.js",
|
"dev": "nodemon src/app.js",
|
||||||
"build:web": "cd web && npm run build",
|
"build:web": "cd web/admin-spa && npm run build",
|
||||||
"install:web": "cd web && npm install",
|
"install:web": "cd web/admin-spa && npm install",
|
||||||
"setup": "node scripts/setup.js",
|
"setup": "node scripts/setup.js",
|
||||||
"cli": "node cli/index.js",
|
"cli": "node cli/index.js",
|
||||||
"init:costs": "node src/cli/initCosts.js",
|
"init:costs": "node src/cli/initCosts.js",
|
||||||
|
|||||||
@@ -359,7 +359,7 @@
|
|||||||
使用共享账号池
|
使用共享账号池
|
||||||
</option>
|
</option>
|
||||||
<option
|
<option
|
||||||
v-for="account in accounts.claude.filter(a => a.isDedicated)"
|
v-for="account in accounts.claude.filter(a => a.accountType === 'dedicated')"
|
||||||
:key="account.id"
|
:key="account.id"
|
||||||
:value="account.id"
|
:value="account.id"
|
||||||
>
|
>
|
||||||
@@ -378,7 +378,7 @@
|
|||||||
使用共享账号池
|
使用共享账号池
|
||||||
</option>
|
</option>
|
||||||
<option
|
<option
|
||||||
v-for="account in accounts.gemini.filter(a => a.isDedicated)"
|
v-for="account in accounts.gemini.filter(a => a.accountType === 'dedicated')"
|
||||||
:key="account.id"
|
:key="account.id"
|
||||||
:value="account.id"
|
:value="account.id"
|
||||||
>
|
>
|
||||||
|
|||||||
Reference in New Issue
Block a user