Skip to content

Commit

Permalink
Change Package display to link, label and typo fixes (MystenLabs#1789)
Browse files Browse the repository at this point in the history
  • Loading branch information
Jibz1 authored May 4, 2022
1 parent 580f8ff commit 984a368
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,7 +188,7 @@ function LatestTxCard() {
<div className={styles.txtype}>TxType</div>
<div className={styles.txgas}>Status</div>
<div className={styles.txgas}>Gas</div>
<div className={styles.txadd}>Sender & Receiver</div>
<div className={styles.txadd}>Addresses</div>
</div>
{results.latestTx.map((tx, index) => (
<div
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ function formatTxResponse(tx: TxDataProps, txId: string) {
// txKind Transfer or Call
...(formatByTransactionKind(txKindName, tx.data) ?? []),
{
label: 'Transactions Signature',
label: 'Transaction Signature',
value: tx.tx_signature,
},
...(tx.mutated.length
Expand Down Expand Up @@ -143,8 +143,8 @@ function formatByTransactionKind(
},
{
label: 'Package',
value: moveCall.package,
list: true,
value: moveCall.package[0],
link: true,
},
{
label: 'Module',
Expand Down

0 comments on commit 984a368

Please sign in to comment.