diff --git a/plugins/catalog-react/src/components/EntityTable/columns.tsx b/plugins/catalog-react/src/components/EntityTable/columns.tsx index 701a8a167c..57aaa156e8 100644 --- a/plugins/catalog-react/src/components/EntityTable/columns.tsx +++ b/plugins/catalog-react/src/components/EntityTable/columns.tsx @@ -150,9 +150,7 @@ export function createMetadataDescriptionColumn< }; } -export function createMetadataTitleColumn< - T extends Entity, ->(): TableColumn { +export function createMetadataTitleColumn(): TableColumn { return { title: 'Title', field: 'metadata.title', diff --git a/plugins/catalog/src/components/CatalogTable/columns.tsx b/plugins/catalog/src/components/CatalogTable/columns.tsx index 389e11f3c4..1ed0e1f72b 100644 --- a/plugins/catalog/src/components/CatalogTable/columns.tsx +++ b/plugins/catalog/src/components/CatalogTable/columns.tsx @@ -99,10 +99,7 @@ export function createMetadataTitleColumn(): TableColumn { title: 'Title', field: 'entity.metadata.title', render: ({ entity }) => ( - + ), width: 'auto', };