diff --git a/src/containers/Tenant/ObjectSummary/ObjectSummary.tsx b/src/containers/Tenant/ObjectSummary/ObjectSummary.tsx
index 09d709532a..6786bad418 100644
--- a/src/containers/Tenant/ObjectSummary/ObjectSummary.tsx
+++ b/src/containers/Tenant/ObjectSummary/ObjectSummary.tsx
@@ -44,7 +44,7 @@ import {ObjectTree} from './ObjectTree';
import {SchemaActions} from './SchemaActions';
import i18n from './i18n';
import {b} from './shared';
-import {transformPath} from './transformPath';
+import {isDomain, transformPath} from './transformPath';
import './ObjectSummary.scss';
@@ -158,7 +158,11 @@ export function ObjectSummary({
const overview: InfoViewerItem[] = [];
- overview.push({label: i18n('field_type'), value: PathType?.replace(/^EPathType/, '')});
+ const normalizedType = isDomain(path, PathType)
+ ? 'Domain'
+ : PathType?.replace(/^EPathType/, '');
+
+ overview.push({label: i18n('field_type'), value: normalizedType});
if (PathSubType !== EPathSubType.EPathSubTypeEmpty) {
overview.push({
@@ -353,6 +357,8 @@ export function ObjectSummary({
dispatchCommonInfoVisibilityState(PaneVisibilityActionTypes.clear);
};
+ const relativePath = transformPath(path, tenantName);
+
const renderCommonInfoControls = () => {
const showPreview = isTableType(type) && !isIndexTableType(subType);
return (
@@ -364,7 +370,7 @@ export function ObjectSummary({
'm',
)(path, 'preview')}