From 5985135e250b1d9e405ae5716a8a062d012014ca Mon Sep 17 00:00:00 2001 From: Andre Wanlin Date: Wed, 10 Nov 2021 07:53:32 -0600 Subject: [PATCH] Moved box to be inside row,isDraft condition Signed-off-by: Andre Wanlin --- .../src/components/PullRequestTable/PullRequestTable.tsx | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/plugins/azure-devops/src/components/PullRequestTable/PullRequestTable.tsx b/plugins/azure-devops/src/components/PullRequestTable/PullRequestTable.tsx index ad744f2cb7..a898766394 100644 --- a/plugins/azure-devops/src/components/PullRequestTable/PullRequestTable.tsx +++ b/plugins/azure-devops/src/components/PullRequestTable/PullRequestTable.tsx @@ -47,16 +47,16 @@ const columns: TableColumn[] = [ render: (row: Partial) => ( {row.title} - - {row.isDraft && ( + {row.isDraft && ( + - )} - + + )} ), },