fix: types
This commit is contained in:
@@ -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 }">
|
||||
|
||||
Reference in New Issue
Block a user