diff --git a/openmetadata-ui/src/main/resources/ui/src/components/Database/SchemaTable/SchemaTable.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/Database/SchemaTable/SchemaTable.component.tsx
index 3b5fb3b97c6..dc4b6c9128f 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/Database/SchemaTable/SchemaTable.component.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/Database/SchemaTable/SchemaTable.component.tsx
@@ -23,7 +23,6 @@ import {
isUndefined,
set,
sortBy,
- toLower,
uniqBy,
} from 'lodash';
import { EntityTags, TagFilterOptions } from 'Models';
@@ -246,15 +245,12 @@ const SchemaTable = ({
return NO_DATA_PLACEHOLDER;
}
- return isReadOnly ||
- (displayValue && displayValue.length < 25 && !isReadOnly) ? (
- toLower(displayValue)
- ) : (
-
-
- {displayValue}
-
-
+ return (
+
+ {displayValue}
+
);
};
@@ -419,7 +415,6 @@ const SchemaTable = ({
dataIndex: 'dataTypeDisplay',
key: 'dataTypeDisplay',
accessor: 'dataTypeDisplay',
- ellipsis: true,
width: 150,
render: renderDataTypeDisplay,
},