rebase fix 1 of n

This commit is contained in:
Jeremy Kauffman 2017-04-10 10:09:48 -04:00
parent ecf54f400b
commit cbb3da2795
2 changed files with 3 additions and 3 deletions

View file

@ -72,7 +72,7 @@ var FeaturedCategory = React.createClass({
<ToolTip label="What's this?" body={communityCategoryToolTipText} className="tooltip--header"/> <ToolTip label="What's this?" body={communityCategoryToolTipText} className="tooltip--header"/>
: '' }</h3> : '' }</h3>
: '' } : '' }
{ this.props.names.map((name) => { return <FileTile key={name} displayStyle="card" name={name} uri={name} /> }) } { this.props.names.map((name) => { return <FileTile key={name} displayStyle="card" uri={name} /> }) }
</div>) </div>)
} }
}) })

View file

@ -24,12 +24,12 @@ var AddressSection = React.createClass({
event.preventDefault(); event.preventDefault();
} }
lbry.wallet_new_address().then((address) => { lbry.wallet_new_address().then(function(address) {
window.localStorage.setItem('wallet_address', address); window.localStorage.setItem('wallet_address', address);
this.setState({ this.setState({
address: address, address: address,
}); });
}.bind(this)); }.bind(this))
}, },
getInitialState: function() { getInitialState: function() {