mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-12-23 09:52:26 +01:00
Make identicon tolerant of changing state
This commit is contained in:
parent
b5f6ef8c01
commit
f2bfdd7f8c
@ -44,3 +44,20 @@ IdenticonComponent.prototype.componentDidMount = function () {
|
|||||||
container.appendChild(img)
|
container.appendChild(img)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
IdenticonComponent.prototype.componentDidUpdate = function () {
|
||||||
|
var props = this.props
|
||||||
|
var address = props.address
|
||||||
|
|
||||||
|
if (!address) return
|
||||||
|
|
||||||
|
var container = findDOMNode(this)
|
||||||
|
|
||||||
|
var children = container.children
|
||||||
|
for (var i = 0; i < children.length; i++) {
|
||||||
|
container.removeChild(children[i])
|
||||||
|
}
|
||||||
|
|
||||||
|
var diameter = props.diameter || this.defaultDiameter
|
||||||
|
var img = iconFactory.iconForAddress(address, diameter, false)
|
||||||
|
container.appendChild(img)
|
||||||
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user