fix: adjust border raduis

This commit is contained in:
jialin
2026-04-08 18:54:06 +08:00
committed by jialin
parent 53cd8ba00c
commit c73609d155
64 changed files with 473 additions and 164 deletions
@@ -38,7 +38,10 @@ const useBenchmarkColumns = (params: {
...columns,
{
title: (
<Typography.Text ellipsis={{ tooltip: true }}>
<Typography.Text
ellipsis={{ tooltip: true }}
style={{ color: 'var(--color-text-table-header)' }}
>
{intl.formatMessage({ id: 'common.table.operation' })}
</Typography.Text>
),
@@ -358,7 +358,10 @@ const useColumnSettings = (options: {
const metadataColumns = [
{
title: (
<Typography.Text ellipsis={{ tooltip: true }}>
<Typography.Text
ellipsis={{ tooltip: true }}
style={{ color: 'var(--color-text-table-header)' }}
>
{intl.formatMessage({ id: 'clusters.title' })}
</Typography.Text>
),
@@ -371,7 +374,10 @@ const useColumnSettings = (options: {
},
{
title: (
<Typography.Text ellipsis={{ tooltip: true }}>
<Typography.Text
ellipsis={{ tooltip: true }}
style={{ color: 'var(--color-text-table-header)' }}
>
{intl.formatMessage({ id: 'benchmark.detail.modelName' })}
</Typography.Text>
),
@@ -385,7 +391,10 @@ const useColumnSettings = (options: {
},
{
title: (
<Typography.Text ellipsis={{ tooltip: true }}>
<Typography.Text
ellipsis={{ tooltip: true }}
style={{ color: 'var(--color-text-table-header)' }}
>
{intl.formatMessage({ id: 'benchmark.form.profile' })}
</Typography.Text>
),
+1
View File
@@ -255,6 +255,7 @@ const Benchmark: React.FC = () => {
scroll={{ x: 1200 }}
onChange={handleTableChange}
pagination={{
size: 'middle',
showSizeChanger: true,
pageSize: queryParams.perPage,
current: queryParams.page,