From 06b4b897cc3c206bcb6fedb2a48ac5152f38ada2 Mon Sep 17 00:00:00 2001 From: Kosta Korenkov Date: Tue, 14 Jul 2020 09:44:08 +0300 Subject: [PATCH] fix: show tx data for txs with decoded params --- .../Transactions/TxsTable/ExpandedTx/TxDescription/utils.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/routes/safe/components/Transactions/TxsTable/ExpandedTx/TxDescription/utils.ts b/src/routes/safe/components/Transactions/TxsTable/ExpandedTx/TxDescription/utils.ts index 4e2bfd0a06..70709ac7c9 100644 --- a/src/routes/safe/components/Transactions/TxsTable/ExpandedTx/TxDescription/utils.ts +++ b/src/routes/safe/components/Transactions/TxsTable/ExpandedTx/TxDescription/utils.ts @@ -54,6 +54,8 @@ export const getTxData = (tx) => { txData.customTx = true } else { txData.recipient = tx.recipient + txData.data = tx.data + txData.customTx = true } } else if (tx.customTx) { txData.recipient = tx.recipient