From ceb1088edc9daf13d4a834586a3aee7d4a691f3f Mon Sep 17 00:00:00 2001 From: Andrew Johnson Date: Tue, 30 Mar 2021 17:40:45 +0100 Subject: [PATCH] spacing Signed-off-by: Andrew Johnson --- .../GithubDeploymentsTable/GithubDeploymentsTable.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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} ),