diff --git a/openmetadata-ui/src/main/resources/ui/src/components/EntityTable/EntityTable.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/EntityTable/EntityTable.component.tsx index 71a16a156a8..ad24c050333 100644 --- a/openmetadata-ui/src/main/resources/ui/src/components/EntityTable/EntityTable.component.tsx +++ b/openmetadata-ui/src/main/resources/ui/src/components/EntityTable/EntityTable.component.tsx @@ -597,38 +597,46 @@ const EntityTable = ({ {cell.column.id === 'dataTypeDisplay' && ( <> - {isReadOnly ? ( -
- -
- ) : ( + {cell.value ? ( <> - {cell.value.length > 25 ? ( - - - {cell.value.toLowerCase()} - - } - position="bottom" - theme="light" - trigger="click"> -
- -
-
-
+ {isReadOnly ? ( +
+ +
) : ( - cell.value.toLowerCase() + <> + {cell.value.length > 25 ? ( + + + + {cell.value.toLowerCase()} + + + } + position="bottom" + theme="light" + trigger="click"> +
+ +
+
+
+ ) : ( + cell.value.toLowerCase() + )} + )} + ) : ( + '--' )} )}