diff --git a/centrifuge-app/src/components/PoolOverview/TransactionHistory.tsx b/centrifuge-app/src/components/PoolOverview/TransactionHistory.tsx index ff6af92a92..666a1bd8dd 100644 --- a/centrifuge-app/src/components/PoolOverview/TransactionHistory.tsx +++ b/centrifuge-app/src/components/PoolOverview/TransactionHistory.tsx @@ -109,7 +109,7 @@ export const TransactionHistoryTable = ({ if (transaction.type === 'INCREASE_DEBT') { return { - label: 'Correction', + label: 'Correction ↑', amount: transaction.amount, netFlow: 'positive', } @@ -117,7 +117,7 @@ export const TransactionHistoryTable = ({ if (transaction.type === 'DECREASE_DEBT') { return { - label: 'Correction', + label: 'Correction ↓', amount: transaction.amount, netFlow: 'negative', } diff --git a/centrifuge-app/src/pages/Loan/TransactionTable.tsx b/centrifuge-app/src/pages/Loan/TransactionTable.tsx index 50fb80ec15..388ba02cd5 100644 --- a/centrifuge-app/src/pages/Loan/TransactionTable.tsx +++ b/centrifuge-app/src/pages/Loan/TransactionTable.tsx @@ -133,6 +133,8 @@ export const TransactionTable = ({ const getStatusText = (type: AssetTransactionType) => { if (type === 'BORROWED') return 'Financed' if (type === 'REPAID') return 'Repaid' + if (type === 'INCREASE_DEBT') return 'Correction ↑' + if (type === 'DECREASE_DEBT') return 'Correction ↓' return `${type[0]}${type.slice(1).toLowerCase()}` }