diff --git a/plugins/github-deployments/src/components/GithubDeploymentsTable/GithubDeploymentsTable.tsx b/plugins/github-deployments/src/components/GithubDeploymentsTable/GithubDeploymentsTable.tsx index 66d2fd4f29..7a12f45f34 100644 --- a/plugins/github-deployments/src/components/GithubDeploymentsTable/GithubDeploymentsTable.tsx +++ b/plugins/github-deployments/src/components/GithubDeploymentsTable/GithubDeploymentsTable.tsx @@ -53,7 +53,7 @@ const columns: TableColumn[] = [ title: 'Status', render: (row: GithubDeployment): React.ReactNode => ( - { statusIndicator(row.state)} + {statusIndicator(row.state)} {row.state} ),