Merge pull request #1487 from spotify/ellinorseastream/table-dense

Enabled 'dense' mode for Table cells.
This commit is contained in:
Fredrik Adelöw
2020-06-30 08:53:31 +02:00
committed by GitHub
4 changed files with 40 additions and 15 deletions
@@ -64,7 +64,7 @@ const SentryIssuesTable: FC<SentryIssuesTableProps> = ({ sentryIssues }) => {
return (
<Table
columns={columns}
options={{ paging: true, search: false, pageSize: 5 }}
options={{ padding: 'dense', paging: true, search: false, pageSize: 5 }}
title="Sentry issues"
data={sentryIssues}
/>