refactor: credential table columns

This commit is contained in:
jialin
2025-09-16 11:26:17 +08:00
parent 43936e21d9
commit 0c1057d554
34 changed files with 648 additions and 503 deletions
@@ -63,6 +63,9 @@ const useGPUColumns = (props: {
{
title: intl.formatMessage({ id: 'clusters.title' }),
dataIndex: 'cluster_id',
ellipsis: {
showTitle: false
},
render: (text: number, record: GPUDeviceItem) => (
<AutoTooltip ghost>
{clusterList.find((item) => item.value === text)?.label}
@@ -70,8 +73,11 @@ const useGPUColumns = (props: {
)
},
{
title: intl.formatMessage({ id: 'resources.table.workername' }),
title: 'Worker',
dataIndex: 'worker_name',
ellipsis: {
showTitle: false
},
render: (text: string, record: GPUDeviceItem) => (
<AutoTooltip ghost>{text}</AutoTooltip>
)
@@ -294,7 +294,7 @@ const useInstanceColumns = (props: {
return useMemo(() => {
return [
{
title: intl.formatMessage({ id: 'common.table.name' }),
title: intl.formatMessage({ id: 'resources.model.instance' }),
dataIndex: 'name',
width: 240,
render: (text: string, record: ListItem) => (
@@ -9,6 +9,7 @@ import {
CodeOutlined,
DeleteOutlined,
EditOutlined,
FileTextOutlined,
InfoCircleOutlined
} from '@ant-design/icons';
import { useIntl } from '@umijs/max';
@@ -31,7 +32,7 @@ const ActionList = [
{
label: 'common.button.detail',
key: 'details',
icon: <IconFont type="icon-detail-info" />
icon: <FileTextOutlined></FileTextOutlined>
},
{
label: 'common.button.logs',