fix: wrong property was being used to determine if a tx was cash-in or
cash-out on the transactions page, resulting in wrong cash-out status on the page
This commit is contained in:
parent
e09c972547
commit
6ec629fdcd
1 changed files with 1 additions and 1 deletions
|
|
@ -14,7 +14,7 @@ const getCashInStatus = it => {
|
||||||
}
|
}
|
||||||
|
|
||||||
const getStatus = it => {
|
const getStatus = it => {
|
||||||
if (it.class === 'cashOut') {
|
if (it.txClass === 'cashOut') {
|
||||||
return getCashOutStatus(it)
|
return getCashOutStatus(it)
|
||||||
}
|
}
|
||||||
return getCashInStatus(it)
|
return getCashInStatus(it)
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue