Browse Source

fix: 自动机器学习创建时间改为更新时间

pull/250/head
zhaowei 8 months ago
parent
commit
b2b74686ca
1 changed files with 3 additions and 3 deletions
  1. +3
    -3
      react-ui/src/pages/AutoML/components/ExperimentList/index.tsx

+ 3
- 3
react-ui/src/pages/AutoML/components/ExperimentList/index.tsx View File

@@ -395,9 +395,9 @@ function ExperimentList({ type }: ExperimentListProps) {
}, },
...diffColumns, ...diffColumns,
{ {
title: '创建时间',
dataIndex: 'create_time',
key: 'create_time',
title: '更新时间',
dataIndex: 'update_time',
key: 'update_time',
width: '20%', width: '20%',
render: tableCellRender(true, TableCellValueType.Date), render: tableCellRender(true, TableCellValueType.Date),
}, },


Loading…
Cancel
Save