Signed-off-by: Andrew Johnson <ajohnson@gocardless.com>
This commit is contained in:
Andrew Johnson
2021-03-30 17:40:45 +01:00
parent 3714e6c374
commit ceb1088edc
@@ -53,7 +53,7 @@ const columns: TableColumn<GithubDeployment>[] = [
title: 'Status',
render: (row: GithubDeployment): React.ReactNode => (
<Box display="flex" alignItems="center">
{ statusIndicator(row.state)}
{statusIndicator(row.state)}
<Typography variant="caption">{row.state}</Typography>
</Box>
),