From c74c0a1682cd8dd82dfc9b0090ee7bb9b5ab7340 Mon Sep 17 00:00:00 2001 From: Barry Gitarts Date: Fri, 10 Aug 2018 15:15:39 -0400 Subject: [PATCH] remove uppercasing of name --- app/components/ens/nameLookup.js | 6 +++--- app/components/standard/TokenPermission.js | 2 +- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/app/components/ens/nameLookup.js b/app/components/ens/nameLookup.js index 1013929..f1ff856 100644 --- a/app/components/ens/nameLookup.js +++ b/app/components/ens/nameLookup.js @@ -68,7 +68,7 @@ const MobileAddressDisplay = ({ domainName, address, statusAccount, expirationTi { display: 'flex', flexDirection: 'column', alignItems: 'center', justifyContent: 'space-evenly', height: '4em', color: '#ffffff', textAlign: 'center', margin: '10%' } }> {isOwner ? : } - {formatName(domainName).toUpperCase()} + {formatName(domainName)}
{expirationTime && Locked until {generatePrettyDate(expirationTime)}}
@@ -95,7 +95,7 @@ class RenderAddresses extends PureComponent {
- {formatName(domainName).toUpperCase()}{expirationTime && (Expires {generatePrettyDate(expirationTime)})} Resolves To: + {formatName(domainName)}{expirationTime && (Expires {generatePrettyDate(expirationTime)})} Resolves To: {address && Ethereum Address {renderCopied(address)}}
{address}
@@ -200,7 +200,7 @@ const DisplayAddress = connect(mapStateToProps)((props) => ( : - {props.domainName.toUpperCase()} + {props.domainName} } diff --git a/app/components/standard/TokenPermission.js b/app/components/standard/TokenPermission.js index bc0b866..810bdd7 100644 --- a/app/components/standard/TokenPermission.js +++ b/app/components/standard/TokenPermission.js @@ -66,7 +66,7 @@ class TokenHandle extends PureComponent { checked={!!Number(approved)} name={symbol} onChange={this.toggleApproved} /> - +
} {isLoading || updating && }