diff --git a/openmetadata-ui/src/main/resources/ui/src/components/EntityInfoDrawer/EntityInfoDrawer.component.tsx b/openmetadata-ui/src/main/resources/ui/src/components/EntityInfoDrawer/EntityInfoDrawer.component.tsx
index ad93f7d8c4f..77711e25bd7 100644
--- a/openmetadata-ui/src/main/resources/ui/src/components/EntityInfoDrawer/EntityInfoDrawer.component.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/components/EntityInfoDrawer/EntityInfoDrawer.component.tsx
@@ -155,6 +155,7 @@ const EntityInfoDrawer = ({
{getEntityIcon(selectedNode.type)}
{getHeaderLabel(
selectedNode.displayName ?? selectedNode.name,
+ selectedNode.name,
selectedNode.type,
isMainNode
)}
diff --git a/openmetadata-ui/src/main/resources/ui/src/utils/EntityLineageUtils.tsx b/openmetadata-ui/src/main/resources/ui/src/utils/EntityLineageUtils.tsx
index 4f99805cccb..d45076468b4 100644
--- a/openmetadata-ui/src/main/resources/ui/src/utils/EntityLineageUtils.tsx
+++ b/openmetadata-ui/src/main/resources/ui/src/utils/EntityLineageUtils.tsx
@@ -54,6 +54,7 @@ import { getEntityLink } from './TableUtils';
export const getHeaderLabel = (
v = '',
+ fqn: string,
type: string,
isMainNode: boolean,
separator = '.'
@@ -72,7 +73,7 @@ export const getHeaderLabel = (
-
+
{v.split(separator)[length - 1]}