Skip to content

Commit

Permalink
Merge pull request #265 from HathorNetwork/master
Browse files Browse the repository at this point in the history
Update dev with master changes
  • Loading branch information
r4mmer committed May 23, 2024
2 parents f83f9e6 + 0151918 commit ae8d275
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions src/components/token/TokenBalanceRow.js
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
import React from 'react';
import { withRouter } from "react-router-dom";
import PropTypes from 'prop-types';
import { helpers } from '@hathor/wallet-lib';
import helpers from '../../utils/helpers';

class TokenBalanceRow extends React.Component {
/**
Expand All @@ -24,9 +24,9 @@ class TokenBalanceRow extends React.Component {
return (
<tr onClick={(e) => this.onRowClicked(this.props.address)}>
<td className="d-lg-table-cell pr-3">{this.props.address}</td>
<td className="d-lg-table-cell pr-3">{helpers.prettyValue(this.props.total)}</td>
<td className="d-lg-table-cell pr-3">{helpers.prettyValue(this.props.unlocked)}</td>
<td className="d-lg-table-cell pr-3">{helpers.prettyValue(this.props.locked)}</td>
<td className="d-lg-table-cell pr-3">{helpers.renderValue(this.props.total, false)}</td>
<td className="d-lg-table-cell pr-3">{helpers.renderValue(this.props.unlocked, false)}</td>
<td className="d-lg-table-cell pr-3">{helpers.renderValue(this.props.locked, false)}</td>
</tr>
);
}
Expand Down

0 comments on commit ae8d275

Please sign in to comment.