mirror of
https://github.com/boldsuck/haveno.git
synced 2024-12-22 20:19:21 +00:00
fix buyer trade info payout transaction ID hide if empty
This commit is contained in:
parent
27fdf87e84
commit
4cbc511bbd
1 changed files with 1 additions and 1 deletions
|
@ -275,7 +275,7 @@ public class TradeDetailsWindow extends Overlay<TradeDetailsWindow> {
|
|||
addLabelTxIdTextField(gridPane, ++rowIndex, Res.get("shared.takerDepositTransactionId"),
|
||||
trade.getTakerDepositTx().getHash());
|
||||
|
||||
if (trade.getPayoutTxId() != null)
|
||||
if (trade.getPayoutTxId() != null && !trade.getPayoutTxId().isBlank())
|
||||
addLabelTxIdTextField(gridPane, ++rowIndex, Res.get("shared.payoutTxId"),
|
||||
trade.getPayoutTxId());
|
||||
if (showDisputedTx)
|
||||
|
|
Loading…
Reference in a new issue