fix(web): model bugfix

This commit is contained in:
zhaoying
2026-01-28 19:58:33 +08:00
parent e89c23da4d
commit 0eb335d112
8 changed files with 11 additions and 16 deletions

View File

@@ -31,12 +31,7 @@ const Group = forwardRef <BaseRef,{ query: any; handleEdit: (data: ModelListItem
{
key: 'type',
label: t(`modelNew.type`),
children: data.type || '-',
},
{
key: 'provider',
label: t(`modelNew.provider`),
children: data.provider || '-',
children: data.type ? t(`modelNew.${data.type}`) : '-',
},
{
key: 'is_active',