diff --git a/packages/core/src/renderer/components/+catalog/catalog.module.scss b/packages/core/src/renderer/components/+catalog/catalog.module.scss index 4fe31c4f27..85976301ba 100644 --- a/packages/core/src/renderer/components/+catalog/catalog.module.scss +++ b/packages/core/src/renderer/components/+catalog/catalog.module.scss @@ -8,6 +8,10 @@ opacity: 1; } + :global(.TableCell) { + padding: 6px 8px; + } + flex-grow: 1; } diff --git a/packages/core/src/renderer/components/+catalog/catalog.tsx b/packages/core/src/renderer/components/+catalog/catalog.tsx index 4609fe9973..012ac7aa39 100644 --- a/packages/core/src/renderer/components/+catalog/catalog.tsx +++ b/packages/core/src/renderer/components/+catalog/catalog.tsx @@ -306,6 +306,9 @@ class NonInjectedCatalog extends React.Component { {...getCategoryColumns({ activeCategory })} onDetails={this.props.onCatalogEntityListClick} renderItemMenu={this.renderItemMenu} + tableProps={{ + customRowHeights: () => 36, // Entity avatar size + padding + }} data-testid={`catalog-list-for-${activeCategory?.metadata.name ?? "browse-all"}`} /> );