aboutsummaryrefslogtreecommitdiff
path: root/cmd/web/js/balance.jsx
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/web/js/balance.jsx')
-rw-r--r--cmd/web/js/balance.jsx6
1 files changed, 3 insertions, 3 deletions
diff --git a/cmd/web/js/balance.jsx b/cmd/web/js/balance.jsx
index 6217e96..1915511 100644
--- a/cmd/web/js/balance.jsx
+++ b/cmd/web/js/balance.jsx
@@ -4,10 +4,10 @@ import classnames from 'classnames';
4 4
5class CurrencyLogo extends React.Component { 5class CurrencyLogo extends React.Component {
6 render = () => { 6 render = () => {
7 var className = classnames('cc', this.props.currency, 'currency-logo'); 7 var className = classnames('bt', 'bt-' + this.props.currency.toLowerCase(), 'currency-logo');
8 return <i className={className} 8 return <i className={className}
9 title={this.props.currency} 9 aria-hidden="true"
10 alt={this.props.currency}></i>; 10 title={this.props.currency}></i>;
11 } 11 }
12 } 12 }
13 13