fix: types

This commit is contained in:
xingyu4j
2025-08-04 18:43:33 +08:00
parent 3f1c3a283f
commit 990ae4463a
3 changed files with 13 additions and 3 deletions

View File

@@ -112,7 +112,11 @@ onMounted(async () => {
</template>
<template #keyId="{ row }">
<span>
{{ apiKeyList.find((item) => item.id === row.keyId)?.name }}
{{
apiKeyList.find(
(item: AiModelApiKeyApi.ApiKey) => item.id === row.keyId,
)?.name
}}
</span>
</template>
<template #actions="{ row }">