diff options
Diffstat (limited to 'ui/app/components/identicon.js')
-rw-r--r-- | ui/app/components/identicon.js | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/ui/app/components/identicon.js b/ui/app/components/identicon.js index 98d5d40ef..71831fe71 100644 --- a/ui/app/components/identicon.js +++ b/ui/app/components/identicon.js @@ -18,9 +18,11 @@ function IdenticonComponent () { IdenticonComponent.prototype.render = function () { var props = this.props + const { className = '' } = props var diameter = props.diameter || this.defaultDiameter return ( - h('div.identicon', { + h('div', { + className: `${className} identicon`, key: 'identicon-' + this.props.address, style: { display: 'flex', |