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 368734c8d04..c74bd6856ee 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 @@ -16,7 +16,7 @@ import { FontAwesomeIcon } from '@fortawesome/react-fontawesome'; import { Popover, Table, Typography } from 'antd'; import { ColumnsType } from 'antd/lib/table'; import classNames from 'classnames'; -import { cloneDeep, isEmpty, isUndefined, lowerCase } from 'lodash'; +import { cloneDeep, isEmpty, isUndefined, lowerCase, toLower } from 'lodash'; import { EntityFieldThreads, EntityTags, TagOption } from 'Models'; import React, { Fragment, @@ -428,12 +428,16 @@ const EntityTable = ({ <> {dataTypeDisplay ? ( isReadOnly || (dataTypeDisplay.length < 25 && !isReadOnly) ? ( - lowerCase(dataTypeDisplay) + toLower(dataTypeDisplay) ) : ( {dataTypeDisplay}