diff --git a/frontend/src/pages/TestList/index.tsx b/frontend/src/pages/TestList/index.tsx index 086e189..4658647 100644 --- a/frontend/src/pages/TestList/index.tsx +++ b/frontend/src/pages/TestList/index.tsx @@ -1,4 +1,4 @@ -import { PlusOutlined } from '@ant-design/icons' +import { PlayCircleOutlined, PlusOutlined } from '@ant-design/icons' import { useQuery } from '@tanstack/react-query' import { Button, Space, Spin, Table, Tag, Typography } from 'antd' import type { ColumnsType } from 'antd/es/table' @@ -58,11 +58,21 @@ export default function TestList() { { title: '', key: 'actions', - width: 90, + width: 200, render: (_: unknown, record: TestListItem) => ( - + + + + ), }, ]