From ae54b8d6a51647e001324e23bdb9d8a1e10a8315 Mon Sep 17 00:00:00 2001 From: Jerel Miller Date: Tue, 22 Oct 2024 10:05:51 -0600 Subject: [PATCH] Right align errors column --- src/application/components/ConnectorsTable.tsx | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/application/components/ConnectorsTable.tsx b/src/application/components/ConnectorsTable.tsx index 8a3884bde..cd5cd37a9 100644 --- a/src/application/components/ConnectorsTable.tsx +++ b/src/application/components/ConnectorsTable.tsx @@ -44,8 +44,8 @@ export function ConnectorsTable({ {col === "status" && Status} {col === "method" && Method} {col === "errors" && ( - -
+ +
Errors{" "} @@ -86,7 +86,7 @@ export function ConnectorsTable({ )} {col === "method" && {request?.method}} {col === "errors" && ( - + {response?.body?.selection?.errors?.length ?? 0} )}