Skip to content
This repository has been archived by the owner on Dec 11, 2019. It is now read-only.

Commit

Permalink
Fixes color flash for add funds button
Browse files Browse the repository at this point in the history
Resolves #11387

Auditors:

Test Plan:
  • Loading branch information
NejcZdovc committed Oct 9, 2017
1 parent 433e69f commit 83dea6b
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ class EnabledContent extends ImmutableComponent {
test2Id={'addFunds'}
l10nId={buttonText}
onClick={onButtonClick.bind(this)}
disabled={ledgerData.get('creating')}
disabled={!ledgerData.get('created')}
/>
<a className={cx({
[globalStyles.appIcons.question]: true,
Expand Down Expand Up @@ -170,6 +170,7 @@ class EnabledContent extends ImmutableComponent {

render () {
const ledgerData = this.props.ledgerData
console.log(ledgerData.toJS())
const walletStatusText = walletStatus(ledgerData)

return <section>
Expand Down

0 comments on commit 83dea6b

Please sign in to comment.