Skip to content

Commit

Permalink
Right align errors column
Browse files Browse the repository at this point in the history
  • Loading branch information
jerelmiller committed Oct 22, 2024
1 parent 5c079d1 commit ae54b8d
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions src/application/components/ConnectorsTable.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -44,8 +44,8 @@ export function ConnectorsTable({
{col === "status" && <Th>Status</Th>}
{col === "method" && <Th>Method</Th>}
{col === "errors" && (
<Th>
<div className="flex gap-2 items-center">
<Th numeric>
<div className="flex gap-2 items-center justify-end">
Errors{" "}
<Tooltip content="Total mapping errors">
<span>
Expand Down Expand Up @@ -86,7 +86,7 @@ export function ConnectorsTable({
)}
{col === "method" && <Td>{request?.method}</Td>}
{col === "errors" && (
<Td>
<Td numeric>
{response?.body?.selection?.errors?.length ?? 0}
</Td>
)}
Expand Down

0 comments on commit ae54b8d

Please sign in to comment.