From ac08a7d066d6fc7342ebcff2f7aa130ff13286eb Mon Sep 17 00:00:00 2001 From: chiyi Date: Sat, 4 Jul 2026 15:37:19 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BC=98=E5=8C=96=E5=B1=95=E7=A4=BA?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- frontend/src/components/UpstreamModal.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/frontend/src/components/UpstreamModal.vue b/frontend/src/components/UpstreamModal.vue index e04ddb2..16d2a2f 100644 --- a/frontend/src/components/UpstreamModal.vue +++ b/frontend/src/components/UpstreamModal.vue @@ -21,7 +21,7 @@ const submitting = ref(false) onMounted(async () => { try { const r = await api('/managed-models') - allModels.value = (r.data?.data || []).map((m) => ({ id: m.id, type: m.type })) + allModels.value = (r.data?.data || []).map((m) => ({ id: m.id, type: m.type, alias: m.alias })) } catch (_) {} }) @@ -99,7 +99,7 @@ async function submit() {