Merge pull request #1550 from chaotixkilla/fix-cancel-batched-txs
[LAM-891] Allow for batched transactions to be canceled
This commit is contained in:
commit
f0d992a35c
12 changed files with 21 additions and 18 deletions
|
|
@ -383,7 +383,8 @@ const DetailsRow = ({ it: tx, timezone }) => {
|
|||
) : (
|
||||
errorElements
|
||||
)}
|
||||
{tx.txClass === 'cashOut' && getStatus(tx) === 'Pending' && (
|
||||
{((tx.txClass === 'cashOut' && getStatus(tx) === 'Pending') ||
|
||||
(tx.txClass === 'cashIn' && getStatus(tx) === 'Batched')) && (
|
||||
<ActionButton
|
||||
color="primary"
|
||||
Icon={CancelIcon}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue