diff options
Make mini account panel labels fully configurable
Diffstat (limited to 'ui/app/components/mini-account-panel.js')
-rw-r--r-- | ui/app/components/mini-account-panel.js | 12 |
1 files changed, 1 insertions, 11 deletions
diff --git a/ui/app/components/mini-account-panel.js b/ui/app/components/mini-account-panel.js index 1ec7b4d41..a8127acd7 100644 --- a/ui/app/components/mini-account-panel.js +++ b/ui/app/components/mini-account-panel.js @@ -34,17 +34,7 @@ AccountPanel.prototype.render = function () { display: 'flex', alignItems: picOrder === 'left' ? 'flex-begin' : 'flex-end', }, - }, [ - - attrs.map((attr) => { - return h('span.font-small', { - key: `mini-${attr}`, - style: { - fontFamily: 'Montserrat Light, Montserrat, sans-serif', - }, - }, attr) - }), - ]), + }, this.props.children), ]) ) } |