Skip to content

Commit

Permalink
Merge pull request #978 from hemilabs/fix-tx-status
Browse files Browse the repository at this point in the history
Fixed transaction status column width
  • Loading branch information
gndelia authored Mar 6, 2025
2 parents f23e7d6 + 974cf0c commit 3af2015
Showing 1 changed file with 9 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -356,12 +356,15 @@ const columnsBuilder = (
},
{
accessorKey: 'status',
cell: ({ row }) =>
isDeposit(row.original) ? (
<DepositStatus deposit={row.original} />
) : (
<WithdrawStatus withdrawal={row.original} />
),
cell: ({ row }) => (
<div className="w-36 text-wrap 2xl:w-48">
{isDeposit(row.original) ? (
<DepositStatus deposit={row.original} />
) : (
<WithdrawStatus withdrawal={row.original} />
)}
</div>
),
header: () => <Header text={t('column-headers.status')} />,
id: 'status',
},
Expand Down

0 comments on commit 3af2015

Please sign in to comment.