Skip to content

Commit

Permalink
Merge pull request #1795 from nervosnetwork/develop
Browse files Browse the repository at this point in the history
Merge develop into testnet
  • Loading branch information
Keith-CY authored Oct 11, 2024
2 parents 9323ca6 + e14c6a1 commit 48187ec
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 5 deletions.
12 changes: 7 additions & 5 deletions src/pages/RGBPP/TransactionList/List/item.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -77,11 +77,13 @@ const Item = ({ item }: { item: Transaction }) => {
style={{ display: 'flex', alignItems: 'center', justifyContent: 'flex-end', gap: 8 }}
title={t('rgbpp.transaction.view_on_bitcoin_explorer')}
>
<BTCExplorerLink className={styles.action} id={item.btcTxId} path="/tx">
<AddressText style={{ marginLeft: 'auto' }} disableTooltip>
{item.btcTxId}
</AddressText>
</BTCExplorerLink>
<div className={styles.btcTx}>
<BTCExplorerLink className={styles.action} id={item.btcTxId} path="/tx">
<AddressText style={{ marginLeft: 'auto' }} disableTooltip>
{item.btcTxId}
</AddressText>
</BTCExplorerLink>
</div>
<BTCExplorerLink className={styles.action} id={item.btcTxId} path="/tx">
<ShareIcon />
</BTCExplorerLink>
Expand Down
4 changes: 4 additions & 0 deletions src/pages/RGBPP/TransactionList/List/styles.module.scss
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@
}
}

.btcTx {
overflow: hidden;
}

.split {
width: 100%;
background-color: #f5f5f5;
Expand Down

0 comments on commit 48187ec

Please sign in to comment.