From e0261783c071aa45ba8b43da73fbe2a56e429cd9 Mon Sep 17 00:00:00 2001 From: fernandomg Date: Mon, 30 Nov 2020 10:22:24 -0300 Subject: [PATCH 1/2] allow to display native coin transfers in the expanded view --- .../Transactions/TxsTable/ExpandedTx/TxDescription/index.tsx | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/src/routes/safe/components/Transactions/TxsTable/ExpandedTx/TxDescription/index.tsx b/src/routes/safe/components/Transactions/TxsTable/ExpandedTx/TxDescription/index.tsx index 249333128a..848cf6ffa2 100644 --- a/src/routes/safe/components/Transactions/TxsTable/ExpandedTx/TxDescription/index.tsx +++ b/src/routes/safe/components/Transactions/TxsTable/ExpandedTx/TxDescription/index.tsx @@ -45,7 +45,9 @@ const TxDescription = ({ tx }: { tx: Transaction }): React.ReactElement => { {tx.type === TransactionTypes.SETTINGS && } {tx.type === TransactionTypes.CUSTOM && } {tx.type === TransactionTypes.UPGRADE && } - {[TransactionTypes.TOKEN, TransactionTypes.COLLECTIBLE].includes(tx.type) && } + {[TransactionTypes.TOKEN, TransactionTypes.COLLECTIBLE, TransactionTypes.OUTGOING].includes(tx.type) && ( + + )} ) } From 7992e5618610922ddb73d872042083ffcfa99f39 Mon Sep 17 00:00:00 2001 From: fernandomg Date: Mon, 30 Nov 2020 10:23:01 -0300 Subject: [PATCH 2/2] fix issue with fragment being passed to material-ui menu --- .../EllipsisTransactionDetails/index.tsx | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/src/routes/safe/components/AddressBook/EllipsisTransactionDetails/index.tsx b/src/routes/safe/components/AddressBook/EllipsisTransactionDetails/index.tsx index 783b0f52ff..0e3889e1c4 100644 --- a/src/routes/safe/components/AddressBook/EllipsisTransactionDetails/index.tsx +++ b/src/routes/safe/components/AddressBook/EllipsisTransactionDetails/index.tsx @@ -63,12 +63,14 @@ export const EllipsisTransactionDetails = ({
- {sendModalOpenHandler ? ( - <> - Send Again - - - ) : null} + {sendModalOpenHandler + ? [ + + Send Again + , + , + ] + : null} {knownAddress ? ( Edit Address book Entry ) : (