@@ -15,7 +15,6 @@ import type {InfoViewerItem} from '../../../components/InfoViewer/InfoViewer';
1515import { LinkWithIcon } from '../../../components/LinkWithIcon/LinkWithIcon' ;
1616import { Loader } from '../../../components/Loader' ;
1717import SplitPane from '../../../components/SplitPane' ;
18- import { getEntityName } from '../../../containers/Tenant/utils' ;
1918import routes , { createExternalUILink , createHref } from '../../../routes' ;
2019import { schemaApi , setShowPreview } from '../../../store/reducers/schema/schema' ;
2120import {
@@ -33,6 +32,7 @@ import {
3332import { formatDateTime , formatSecondsToHours } from '../../../utils/dataFormatters/dataFormatters' ;
3433import { useTypedDispatch , useTypedSelector } from '../../../utils/hooks' ;
3534import { Acl } from '../Acl/Acl' ;
35+ import { EntityTitle } from '../EntityTitle/EntityTitle' ;
3636import { SchemaTree } from '../Schema/SchemaTree/SchemaTree' ;
3737import { SchemaViewer } from '../Schema/SchemaViewer/SchemaViewer' ;
3838import { TENANT_INFO_TABS , TENANT_SCHEMA_TAB , TenantTabsGroups } from '../TenantPages' ;
@@ -159,7 +159,8 @@ export function ObjectSummary({
159159 } ) ;
160160
161161 const { PathDescription} = currentObjectData ;
162- const title = getEntityName ( PathDescription ) ;
162+
163+ const title = < EntityTitle data = { PathDescription } /> ;
163164
164165 const getPathTypeOverview : Record < EPathType , ( ( ) => InfoViewerItem [ ] ) | undefined > = {
165166 [ EPathType . EPathTypeInvalid ] : undefined ,
0 commit comments