From a7937c937bcbb79d185b8c1f0355c01c60144ea6 Mon Sep 17 00:00:00 2001 From: Aleksey Razorvin <> Date: Sat, 21 Mar 2026 12:58:38 +0500 Subject: [PATCH] =?UTF-8?q?feat:=20add=20'=D0=9F=D1=80=D0=BE=D0=B9=D1=82?= =?UTF-8?q?=D0=B8=20=D1=82=D0=B5=D1=81=D1=82'=20button=20to=20test=20list?= =?UTF-8?q?=20table?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Co-Authored-By: Claude Sonnet 4.6 --- frontend/src/pages/TestList/index.tsx | 20 +++++++++++++++----- 1 file changed, 15 insertions(+), 5 deletions(-) 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) => ( - + + + + ), }, ]