fix(gui): Empty tx lock id text box on history page

This commit is contained in:
binarybaron 2024-10-14 00:09:58 +02:00
parent 15b43bf4a4
commit 898c7a2450

View file

@ -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>