fix(ui): update soft-deletion banner message (#11571)

This commit is contained in:
Harshal Sheth 2024-10-10 02:35:41 -07:00 committed by GitHub
parent f147b51fc8
commit a219316b30
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -323,7 +323,13 @@ export const EntityProfile = <T, U>({
{showBrowseBar && <EntityProfileNavBar urn={urn} entityType={entityType} />}
{entityData?.status?.removed === true && (
<Alert
message="This entity is not discoverable via search or lineage graph. Contact your DataHub admin for more information."
message={
<>
This entity is marked as soft-deleted, likely due to stateful ingestion or a manual
deletion command, and will not appear in search or lineage graphs. Contact your DataHub
admin for more information.
</>
}
banner
/>
)}