Skip to content

Commit

Permalink
Merge branch 'staging'
Browse files Browse the repository at this point in the history
  • Loading branch information
svk31 committed Mar 2, 2018
2 parents 85831d5 + 4c9ddbe commit 4ddc125
Show file tree
Hide file tree
Showing 5 changed files with 341 additions and 148 deletions.
5 changes: 3 additions & 2 deletions app/components/Blockchain/Operation.jsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,13 +77,13 @@ class Row extends React.Component {
}

render() {
let {block, fee, color, type, hideOpLabel} = this.props;
let {block, fee, color, type, hideOpLabel, hidePending} = this.props;

let last_irreversible_block_num = this.props.dynGlobalObject.get(
"last_irreversible_block_num"
);
let pending = null;
if (block > last_irreversible_block_num) {
if (!hidePending && block > last_irreversible_block_num) {
pending = (
<span>
(<Translate
Expand Down Expand Up @@ -1310,6 +1310,7 @@ class Operation extends React.Component {
hideDate={this.props.hideDate}
info={column}
hideFee={this.props.hideFee}
hidePending={this.props.hidePending}
/>
) : null;

Expand Down
Loading

0 comments on commit 4ddc125

Please sign in to comment.