Enabled 'dense' mode for Table cells.

Hardcoded cell styling for Table was removed to enable 'dense' as a cell padding choice.
Padding customisation for inherited smallSize was added.
Dense mode was chosen for sentry issues table rows.
This commit is contained in:
ellinors
2020-06-29 13:37:50 +02:00
parent 688fb60624
commit 563a8a5f4e
3 changed files with 5 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}
/>