diff --git a/openmetadata-ui/src/main/resources/ui/src/components/DataQuality/TestSuite/TestSuiteList/TestSuites.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/DataQuality/TestSuite/TestSuiteList/TestSuites.component.tsx
index c7a148ae522..7b6a21a67dc 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/DataQuality/TestSuite/TestSuiteList/TestSuites.component.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/DataQuality/TestSuite/TestSuiteList/TestSuites.component.tsx
@@ -10,7 +10,7 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-import { Button, Col, Form, Row, Select, Space } from 'antd';
+import { Button, Col, Form, Row, Select, Space, Typography } from 'antd';
import { ColumnsType } from 'antd/lib/table';
import { AxiosError } from 'axios';
import { isEmpty } from 'lodash';
@@ -115,6 +115,7 @@ export const TestSuites = () => {
title: t('label.name'),
dataIndex: 'name',
key: 'name',
+ width: 600,
sorter: (a, b) => {
if (a.basic) {
// Sort for basic test suites
@@ -133,28 +134,34 @@ export const TestSuites = () => {
},
sortDirections: ['ascend', 'descend'],
render: (name, record) => {
- return record.basic ? (
-
- {record.basicEntityReference?.fullyQualifiedName ??
- record.basicEntityReference?.name}
-
- ) : (
-
- {getEntityName(record)}
-
+ return (
+
+ {record.basic ? (
+
+ {record.basicEntityReference?.fullyQualifiedName ??
+ record.basicEntityReference?.name}
+
+ ) : (
+
+ {getEntityName(record)}
+
+ )}
+
);
},
},