diff options
author | Thomas Huang <tmashuang@users.noreply.github.com> | 2017-10-25 02:22:31 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-10-25 02:22:31 +0800 |
commit | ae56b865e8a4d3a6a82a97efeca34b8a592c985b (patch) | |
tree | b2d91f3094a096bee2e74c4306f5d71f1415f2a6 /ui/app/components/identicon.js | |
parent | 61eea51310508714d753965e3055f533434001e7 (diff) | |
parent | 099078d13b7f8c3c9c4ca1e4d9e775f480b0ad8d (diff) | |
download | tangerine-wallet-browser-ae56b865e8a4d3a6a82a97efeca34b8a592c985b.tar tangerine-wallet-browser-ae56b865e8a4d3a6a82a97efeca34b8a592c985b.tar.gz tangerine-wallet-browser-ae56b865e8a4d3a6a82a97efeca34b8a592c985b.tar.bz2 tangerine-wallet-browser-ae56b865e8a4d3a6a82a97efeca34b8a592c985b.tar.lz tangerine-wallet-browser-ae56b865e8a4d3a6a82a97efeca34b8a592c985b.tar.xz tangerine-wallet-browser-ae56b865e8a4d3a6a82a97efeca34b8a592c985b.tar.zst tangerine-wallet-browser-ae56b865e8a4d3a6a82a97efeca34b8a592c985b.zip |
Merge pull request #1990 from chikeichan/firsttimeflow
Implement Mascara First Time Flow
Diffstat (limited to 'ui/app/components/identicon.js')
-rw-r--r-- | ui/app/components/identicon.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/ui/app/components/identicon.js b/ui/app/components/identicon.js index c754bc6ba..bb476ca7b 100644 --- a/ui/app/components/identicon.js +++ b/ui/app/components/identicon.js @@ -41,6 +41,7 @@ IdenticonComponent.prototype.componentDidMount = function () { if (!address) return + // eslint-disable-next-line react/no-find-dom-node var container = findDOMNode(this) var diameter = props.diameter || this.defaultDiameter @@ -56,6 +57,7 @@ IdenticonComponent.prototype.componentDidUpdate = function () { if (!address) return + // eslint-disable-next-line react/no-find-dom-node var container = findDOMNode(this) var children = container.children |