fix(data-product): show data product card on home page (#8924)

This commit is contained in:
Lucas Phan 2023-10-02 11:58:58 -07:00 committed by GitHub
parent b81e818e47
commit c779b92bd0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 2 additions and 1 deletions

View File

@ -51,7 +51,7 @@ export class DataProductEntity implements Entity<DataProduct> {
isSearchEnabled = () => true;
isBrowseEnabled = () => false;
isBrowseEnabled = () => true;
isLineageEnabled = () => false;

View File

@ -95,6 +95,7 @@ const simpleViewEntityTypes = [
EntityType.Dashboard,
EntityType.GlossaryNode,
EntityType.GlossaryTerm,
EntityType.DataProduct,
];
export const HomePageRecommendations = ({ user }: Props) => {