From 06b2a04a4259a0bc7dff4004328441d353c296de Mon Sep 17 00:00:00 2001 From: Chi Kei Chan Date: Tue, 5 Sep 2017 01:48:52 -0700 Subject: Implement tokens list UI --- ui/app/components/identicon.js | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) (limited to 'ui/app/components/identicon.js') 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', -- cgit