diff options
author | Brandon Millman <brandon.millman@gmail.com> | 2018-03-30 02:25:50 +0800 |
---|---|---|
committer | Brandon Millman <brandon.millman@gmail.com> | 2018-03-30 02:25:50 +0800 |
commit | 03b00ef8da0bafc464e14e5d8225b9a9514b19bd (patch) | |
tree | f7a4790c5dbd2757da01468463699064f121a465 /packages/website/ts/components/wallet | |
parent | 665011174bab7cfc6ec53e0044d60e1463222aee (diff) | |
download | dexon-sol-tools-03b00ef8da0bafc464e14e5d8225b9a9514b19bd.tar dexon-sol-tools-03b00ef8da0bafc464e14e5d8225b9a9514b19bd.tar.gz dexon-sol-tools-03b00ef8da0bafc464e14e5d8225b9a9514b19bd.tar.bz2 dexon-sol-tools-03b00ef8da0bafc464e14e5d8225b9a9514b19bd.tar.lz dexon-sol-tools-03b00ef8da0bafc464e14e5d8225b9a9514b19bd.tar.xz dexon-sol-tools-03b00ef8da0bafc464e14e5d8225b9a9514b19bd.tar.zst dexon-sol-tools-03b00ef8da0bafc464e14e5d8225b9a9514b19bd.zip |
Style changes
Diffstat (limited to 'packages/website/ts/components/wallet')
-rw-r--r-- | packages/website/ts/components/wallet/wrap_ether_item.tsx | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/packages/website/ts/components/wallet/wrap_ether_item.tsx b/packages/website/ts/components/wallet/wrap_ether_item.tsx index 71ce6894f..3a876721a 100644 --- a/packages/website/ts/components/wallet/wrap_ether_item.tsx +++ b/packages/website/ts/components/wallet/wrap_ether_item.tsx @@ -78,7 +78,7 @@ export class WrapEtherItem extends React.Component<WrapEtherItemProps, WrapEther <EthAmountInput balance={etherBalanceInEth} amount={this.state.currentInputAmount} - hintText={'0.00'} + hintText="0.00" onChange={this._onValueChange.bind(this)} shouldCheckBalance={true} shouldShowIncompleteErrs={false} @@ -98,9 +98,8 @@ export class WrapEtherItem extends React.Component<WrapEtherItemProps, WrapEther shouldCheckAllowance={false} onChange={this._onValueChange.bind(this)} amount={this.state.currentInputAmount} - hintText={'0.00'} - onVisitBalancesPageClick={_.noop} - shouldShowErrs={false} + hintText="0.00" + shouldShowErrs={false} // TODO: error handling shouldShowUnderline={false} style={styles.ethAmountInput} /> |