mirror of
https://github.com/comit-network/xmr-btc-swap.git
synced 2025-05-12 11:42:13 -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>
|
<TableCell>
|
||||||
<Box>
|
<Box>
|
||||||
{swap.seller.addresses.map((addr) => (
|
{swap.seller.addresses.map((addr) => (
|
||||||
<ActionableMonospaceTextBox key={addr} content={addr} displayCopyIcon={false} enableQrCode={false} />
|
<ActionableMonospaceTextBox
|
||||||
|
key={addr}
|
||||||
|
content={addr}
|
||||||
|
displayCopyIcon={true}
|
||||||
|
enableQrCode={false}
|
||||||
|
/>
|
||||||
))}
|
))}
|
||||||
</Box>
|
</Box>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
|
@ -102,10 +107,9 @@ export default function HistoryRowExpanded({
|
||||||
href={getBitcoinTxExplorerUrl(swap.tx_lock_id, isTestnet())}
|
href={getBitcoinTxExplorerUrl(swap.tx_lock_id, isTestnet())}
|
||||||
target="_blank"
|
target="_blank"
|
||||||
>
|
>
|
||||||
<MonospaceTextBox
|
<MonospaceTextBox>
|
||||||
content={swap.tx_lock_id}
|
{swap.tx_lock_id}
|
||||||
endIcon={<OpenInNew />}
|
</MonospaceTextBox>
|
||||||
/>
|
|
||||||
</Link>
|
</Link>
|
||||||
</TableCell>
|
</TableCell>
|
||||||
</TableRow>
|
</TableRow>
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue