aboutsummaryrefslogtreecommitdiffstats
path: root/ui/app/components/sender-to-recipient
diff options
context:
space:
mode:
authorAlexander Tseung <alextsg@gmail.com>2018-09-08 04:59:05 +0800
committerAlexander Tseung <alextsg@gmail.com>2018-09-13 10:48:52 +0800
commitf1a309e0cc110060cc56252ec5f7626ca6403fab (patch)
tree204da913ed98c7b5947cc74907335bd545f02213 /ui/app/components/sender-to-recipient
parentc18c0e1c30bd7b2800e66288e21ee724e7314b30 (diff)
downloadtangerine-wallet-browser-f1a309e0cc110060cc56252ec5f7626ca6403fab.tar.gz
tangerine-wallet-browser-f1a309e0cc110060cc56252ec5f7626ca6403fab.tar.zst
tangerine-wallet-browser-f1a309e0cc110060cc56252ec5f7626ca6403fab.zip
Fix identicon address. Fix styling of New Contract recipient. Fix Activity Log initial ETH value. Add timestamps to Activity Log events
Diffstat (limited to 'ui/app/components/sender-to-recipient')
-rw-r--r--ui/app/components/sender-to-recipient/sender-to-recipient.component.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/ui/app/components/sender-to-recipient/sender-to-recipient.component.js b/ui/app/components/sender-to-recipient/sender-to-recipient.component.js
index 445a11d8a..61f77224d 100644
--- a/ui/app/components/sender-to-recipient/sender-to-recipient.component.js
+++ b/ui/app/components/sender-to-recipient/sender-to-recipient.component.js
@@ -115,7 +115,7 @@ export default class SenderToRecipient extends PureComponent {
renderRecipientWithoutAddress () {
return (
<div className="sender-to-recipient__party sender-to-recipient__party--recipient">
- <i className="fa fa-file-text-o" />
+ { !this.props.addressOnly && <i className="fa fa-file-text-o" /> }
<div className="sender-to-recipient__name">
{ this.context.t('newContract') }
</div>