fix buyer trade info payout transaction ID hide if empty

This commit is contained in:
napoly 2022-11-13 23:35:02 +01:00 committed by woodser
parent 27fdf87e84
commit 4cbc511bbd

View File

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