Skip to content

Commit

Permalink
fix(ui): update soft-deletion banner message (datahub-project#11571)
Browse files Browse the repository at this point in the history
  • Loading branch information
hsheth2 authored Oct 10, 2024
1 parent f147b51 commit a219316
Showing 1 changed file with 7 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -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
/>
)}
Expand Down

0 comments on commit a219316

Please sign in to comment.