mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-05-12 03:35:06 -04:00
fix(gui): Empty tx lock id text box on history page
This commit is contained in:
parent
15b43bf4a4
commit
898c7a2450
1 changed files with 9 additions and 5 deletions
|
@ -90,7 +90,12 @@ export default function HistoryRowExpanded({
|
|||
<TableCell>
|
||||
<Box>
|
||||
{swap.seller.addresses.map((addr) => (
|
||||
<ActionableMonospaceTextBox key={addr} content={addr} displayCopyIcon={false} enableQrCode={false} />
|
||||
<ActionableMonospaceTextBox
|
||||
key={addr}
|
||||
content={addr}
|
||||
displayCopyIcon={true}
|
||||
enableQrCode={false}
|
||||
/>
|
||||
))}
|
||||
</Box>
|
||||
</TableCell>
|
||||
|
@ -102,10 +107,9 @@ export default function HistoryRowExpanded({
|
|||
href={getBitcoinTxExplorerUrl(swap.tx_lock_id, isTestnet())}
|
||||
target="_blank"
|
||||
>
|
||||
<MonospaceTextBox
|
||||
content={swap.tx_lock_id}
|
||||
endIcon={<OpenInNew />}
|
||||
/>
|
||||
<MonospaceTextBox>
|
||||
{swap.tx_lock_id}
|
||||
</MonospaceTextBox>
|
||||
</Link>
|
||||
</TableCell>
|
||||
</TableRow>
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue