From 8e0e088e707bcd454a7ebb12a90bbb73699b41f7 Mon Sep 17 00:00:00 2001 From: mmbyday Date: Sat, 1 Dec 2018 20:17:00 +0200 Subject: [PATCH] HistoryTable: missing TransactionID text fix --- components/HistoryTable.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/HistoryTable.qml b/components/HistoryTable.qml index 0077c4d2..f4ccd914 100644 --- a/components/HistoryTable.qml +++ b/components/HistoryTable.qml @@ -293,7 +293,7 @@ ListView { anchors.left: parent.left anchors.leftMargin: 30 * scaleRatio - labelHeader: QsTr("Transaction ID") + translationManager.emptyString + labelHeader: qsTr("Transaction ID") + translationManager.emptyString labelValue: hash.substring(0, 18) + "..." copyValue: hash }