Skip to content

Commit

Permalink
fix(ui): fix expandedName for dataset (datahub-project#4762)
Browse files Browse the repository at this point in the history
  • Loading branch information
mayurinehate authored and maggiehays committed Aug 1, 2022
1 parent 5e1b772 commit 2a16963
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datahub-web-react/src/app/entity/dataset/DatasetEntity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -278,7 +278,7 @@ export class DatasetEntity implements Entity<Dataset> {
return {
urn: entity?.urn,
name: entity?.properties?.name || entity.name,
expandedName: entity?.properties?.qualifiedName || entity.name,
expandedName: entity?.properties?.qualifiedName || entity?.properties?.name || entity.name,
type: EntityType.Dataset,
subtype: entity?.subTypes?.typeNames?.[0] || undefined,
icon: entity?.platform?.properties?.logoUrl || undefined,
Expand Down

0 comments on commit 2a16963

Please sign in to comment.