diff --git a/react-ui/src/global.less b/react-ui/src/global.less
index 7471b78c..8b1b44f9 100644
--- a/react-ui/src/global.less
+++ b/react-ui/src/global.less
@@ -149,6 +149,11 @@ ol {
z-index: 999;
}
+.kf-table-row-link:hover {
+ text-decoration: underline @underline-color;
+ text-underline-offset: 3px;
+}
+
input:-webkit-autofill {
transition: background-color 5000s ease-in-out 0s;
}
diff --git a/react-ui/src/pages/Dataset/components/ResourceVersion/index.tsx b/react-ui/src/pages/Dataset/components/ResourceVersion/index.tsx
index 2e9f87b2..8199d336 100644
--- a/react-ui/src/pages/Dataset/components/ResourceVersion/index.tsx
+++ b/react-ui/src/pages/Dataset/components/ResourceVersion/index.tsx
@@ -128,7 +128,7 @@ function ResourceVersion({
dataIndex: 'index',
key: 'index',
width: 80,
- render(text: string, record: ResourceFileData, index: number) {
+ render(_text: string, _record: ResourceFileData, index: number) {
return {index + 1};
},
},
@@ -137,7 +137,9 @@ function ResourceVersion({
dataIndex: 'file_name',
key: 'file_name',
render: (text: string, record: ResourceFileData) => (
- downloadAlone(record)}>{text}
+ downloadAlone(record)}>
+ {text}
+
),
},
{
diff --git a/react-ui/src/pages/DevelopmentEnvironment/List/index.tsx b/react-ui/src/pages/DevelopmentEnvironment/List/index.tsx
index db1d0544..504a4d9d 100644
--- a/react-ui/src/pages/DevelopmentEnvironment/List/index.tsx
+++ b/react-ui/src/pages/DevelopmentEnvironment/List/index.tsx
@@ -154,7 +154,9 @@ function EditorList() {
width: '30%',
render: (text, record) =>
record.url ? (
- gotoEditorPage(e, record)}>{text}
+ gotoEditorPage(e, record)}>
+ {text}
+
) : (
{text ?? '--'}
),
diff --git a/react-ui/src/pages/Experiment/components/ExperimentInstance/index.less b/react-ui/src/pages/Experiment/components/ExperimentInstance/index.less
index 650b3153..541af2b5 100644
--- a/react-ui/src/pages/Experiment/components/ExperimentInstance/index.less
+++ b/react-ui/src/pages/Experiment/components/ExperimentInstance/index.less
@@ -33,7 +33,7 @@
}
.operation {
- width: 334px;
+ width: 344px;
}
}
diff --git a/react-ui/src/pages/Experiment/index.jsx b/react-ui/src/pages/Experiment/index.jsx
index e9ad6821..9f3d55c7 100644
--- a/react-ui/src/pages/Experiment/index.jsx
+++ b/react-ui/src/pages/Experiment/index.jsx
@@ -355,7 +355,11 @@ function Experiment() {
title: '关联流水线名称',
dataIndex: 'workflow_name',
key: 'workflow_name',
- render: (text, record) => gotoPipeline(e, record)}>{text},
+ render: (text, record) => (
+ gotoPipeline(e, record)}>
+ {text}
+
+ ),
width: '16%',
},
{
@@ -393,7 +397,7 @@ function Experiment() {
{
title: '操作',
key: 'action',
- width: 350,
+ width: 360,
render: (_, record) => (