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() {