Skip to content
This repository has been archived by the owner on Feb 27, 2021. It is now read-only.

Commit

Permalink
fix(txlist): index formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
shanejonas committed Jun 26, 2019
1 parent a855187 commit fbf39ba
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/TxList/TxList.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ function TxListItem({ tx }: { tx: any }) {
: null}
</TableCell>

<TableCell>{tx.transactionIndex}</TableCell>
<TableCell>{parseInt(tx.transactionIndex, 16)}</TableCell>
</TableRow>
);
}
Expand Down

0 comments on commit fbf39ba

Please sign in to comment.