diff --git a/react-ui/src/pages/AutoML/components/ExperimentInstance/index.less b/react-ui/src/pages/AutoML/components/ExperimentInstance/index.less index 3e7d2eec..6cd9ef98 100644 --- a/react-ui/src/pages/AutoML/components/ExperimentInstance/index.less +++ b/react-ui/src/pages/AutoML/components/ExperimentInstance/index.less @@ -26,7 +26,7 @@ .startTime { .singleLine(); - width: calc(20% + 10px); + width: 200px; } .status { diff --git a/react-ui/src/pages/AutoML/components/ExperimentList/index.tsx b/react-ui/src/pages/AutoML/components/ExperimentList/index.tsx index 4028d32c..bcc85a2f 100644 --- a/react-ui/src/pages/AutoML/components/ExperimentList/index.tsx +++ b/react-ui/src/pages/AutoML/components/ExperimentList/index.tsx @@ -262,12 +262,11 @@ function ExperimentList({ type }: ExperimentListProps) { key: 'ml_description', render: tableCellRender(true), }, - { title: '创建时间', dataIndex: 'update_time', key: 'update_time', - width: '20%', + width: 200, render: tableCellRender(false, TableCellValueType.Date), }, { diff --git a/react-ui/src/pages/Pipeline/index.jsx b/react-ui/src/pages/Pipeline/index.jsx index 0c6b50ee..08d1ccf6 100644 --- a/react-ui/src/pages/Pipeline/index.jsx +++ b/react-ui/src/pages/Pipeline/index.jsx @@ -152,6 +152,7 @@ const Pipeline = () => { title: '流水线名称', dataIndex: 'name', key: 'name', + width: '50%', render: tableCellRender(false, TableCellValueType.Link, { onClick: gotoDetail, }), @@ -160,18 +161,21 @@ const Pipeline = () => { title: '流水线描述', dataIndex: 'description', key: 'description', + width: '50%', render: tableCellRender(true), }, { title: '创建时间', dataIndex: 'create_time', key: 'create_time', + width: 180, render: tableCellRender(false, TableCellValueType.Date), }, { title: '修改时间', dataIndex: 'update_time', key: 'update_time', + width: 180, render: tableCellRender(false, TableCellValueType.Date), }, {