From a11367090564f33b5a9207eb2631c69cc95853e5 Mon Sep 17 00:00:00 2001 From: xiphon Date: Fri, 13 Dec 2019 10:42:47 +0000 Subject: [PATCH] History: don't show empty paymentId in tx details --- pages/History.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pages/History.qml b/pages/History.qml index dbca79c3..363aa628 100644 --- a/pages/History.qml +++ b/pages/History.qml @@ -1599,7 +1599,7 @@ Rectangle { currentWallet.getTxKeyAsync(hash, function(hash, tx_key) { informationPopup.title = qsTr("Transaction details") + translationManager.emptyString; - informationPopup.content = buildTxDetailsString(hash, paymentId, tx_key, tx_note, destinations, rings, address, address_label, integratedAddress, dateTime, amount); + informationPopup.content = buildTxDetailsString(hash, hasPaymentId ? paymentId : null, tx_key, tx_note, destinations, rings, address, address_label, integratedAddress, dateTime, amount); informationPopup.onCloseCallback = null informationPopup.open(); });