Skip to content

Commit

Permalink
feat(ui): Enable Owner Type for Glossary Node + Domain (#6334)
Browse files Browse the repository at this point in the history
* Enabling Owner Type of Glossary Nodes

* Enable Owner type for Domain
  • Loading branch information
jjoyce0510 authored Nov 2, 2022
1 parent 5b85a1f commit 3a68799
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 9 deletions.
3 changes: 0 additions & 3 deletions datahub-web-react/src/app/entity/domain/DomainEntity.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -85,9 +85,6 @@ export class DomainEntity implements Entity<Domain> {
},
{
component: SidebarOwnerSection,
properties: {
hideOwnerType: true,
},
},
]}
/>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@ class GlossaryNodeEntity implements Entity<GlossaryNode> {
},
{
component: SidebarOwnerSection,
properties: {
hideOwnerType: true,
},
},
]}
customNavBar={<GlossaryEntitiesPath />}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ export const OWNERSHIP_DISPLAY_TYPES = [
{
type: OwnershipType.TechnicalOwner,
name: 'Technical Owner',
description: 'Involved in the production, maintenance, or distribution of the asset.',
description: 'Involved in the production, maintenance, or distribution of the asset(s).',
},
{
type: OwnershipType.BusinessOwner,
name: 'Business Owner',
description: 'Principle stakeholders or domain experts associated with the asset.',
description: 'Principle stakeholders or domain experts associated with the asset(s).',
},
{
type: OwnershipType.DataSteward,
name: 'Data Steward',
description: 'Involved in governance of the asset.',
description: 'Involved in governance of the asset(s).',
},
{
type: OwnershipType.None,
Expand Down

0 comments on commit 3a68799

Please sign in to comment.